diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-17 17:57:44 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-17 17:57:44 +0000 |
commit | 9b612631f526b218337f729ac74fa4e50e8b14d0 (patch) | |
tree | c21f40be6f91e95a4ec9b04a2fd0a341b4b02206 /dev-python/logilab-common/files | |
parent | cleanup (diff) | |
download | gentoo-2-9b612631f526b218337f729ac74fa4e50e8b14d0.tar.gz gentoo-2-9b612631f526b218337f729ac74fa4e50e8b14d0.tar.bz2 gentoo-2-9b612631f526b218337f729ac74fa4e50e8b14d0.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-python/logilab-common/files')
-rw-r--r-- | dev-python/logilab-common/files/logilab-common-0.51.1-python-2.7.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/logilab-common/files/logilab-common-0.51.1-python-2.7.patch b/dev-python/logilab-common/files/logilab-common-0.51.1-python-2.7.patch deleted file mode 100644 index dae021e12259..000000000000 --- a/dev-python/logilab-common/files/logilab-common-0.51.1-python-2.7.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- testlib.py -+++ testlib.py -@@ -1022,8 +1022,12 @@ - - def __init__(self, methodName='runTest'): - super(TestCase, self).__init__(methodName) -+ # internal API changed in python2.7 -+ if sys.version_info >= (2, 7): -+ self.__exc_info = sys.exc_info -+ self.__testMethodName = self._testMethodName - # internal API changed in python2.5 -- if sys.version_info >= (2, 5): -+ elif sys.version_info >= (2, 5): - self.__exc_info = self._exc_info - self.__testMethodName = self._testMethodName - else: |