diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-04-22 08:30:33 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-04-22 08:30:33 +0000 |
commit | b7cc2006dc13cf4c810dd9279d09ed4fe31d8ddb (patch) | |
tree | 01db2d8ab7da8ebf8e36e93cb0c35b3c71b17502 /dev-python/nose/files | |
parent | Remove old versions, patches. (diff) | |
download | gentoo-2-b7cc2006dc13cf4c810dd9279d09ed4fe31d8ddb.tar.gz gentoo-2-b7cc2006dc13cf4c810dd9279d09ed4fe31d8ddb.tar.bz2 gentoo-2-b7cc2006dc13cf4c810dd9279d09ed4fe31d8ddb.zip |
revbump; drop masked pypy2_0, patch sourced from upstream to fix version issue in py3
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/nose/files')
-rw-r--r-- | dev-python/nose/files/nose-1.3.1-version.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/nose/files/nose-1.3.1-version.patch b/dev-python/nose/files/nose-1.3.1-version.patch new file mode 100644 index 000000000000..8f6edb5be2ef --- /dev/null +++ b/dev-python/nose/files/nose-1.3.1-version.patch @@ -0,0 +1,16 @@ +https://github.com/nose-devs/nose/commit/43c35e49106916f51f676455888fe7a39d030113.diff +diff --git a/nose/pyversion.py b/nose/pyversion.py +index fba5ada..8b56614 100644 +--- a/nose/pyversion.py ++++ b/nose/pyversion.py +@@ -89,7 +89,8 @@ def __init__(self, cls, func): + self.__dict__ = func.__dict__.copy() + self._func = func + self.__self__ = UnboundSelf(cls) +- self.im_class = cls ++ if sys.version_info < (3, 0): ++ self.im_class = cls + + def address(self): + cls = self.__self__.cls + |