diff -Nru nose-1.3.1/debian/changelog nose-1.3.1/debian/changelog --- nose-1.3.1/debian/changelog 2014-03-19 14:31:39.000000000 +0000 +++ nose-1.3.1/debian/changelog 2014-03-31 06:01:25.000000000 +0000 @@ -1,3 +1,11 @@ +nose (1.3.1-2) unstable; urgency=medium + + * Backport a patch (issue780) to fix UnboundMethod regression with + Python 3. + * Add myself to Uploaders. + + -- Dmitry Shachnev Fri, 28 Mar 2014 13:28:26 +0400 + nose (1.3.1-1) unstable; urgency=medium * Team upload. diff -Nru nose-1.3.1/debian/control nose-1.3.1/debian/control --- nose-1.3.1/debian/control 2014-02-12 15:04:52.000000000 +0000 +++ nose-1.3.1/debian/control 2014-03-31 05:59:11.000000000 +0000 @@ -4,7 +4,8 @@ Maintainer: Gustavo Noronha Silva Uploaders: Debian Python Modules Team , - Torsten Marek + Torsten Marek , + Dmitry Shachnev Build-Depends: debhelper (>= 7.0.50~), libjs-jquery-hotkeys, diff -Nru nose-1.3.1/debian/patches/issue780 nose-1.3.1/debian/patches/issue780 --- nose-1.3.1/debian/patches/issue780 1970-01-01 00:00:00.000000000 +0000 +++ nose-1.3.1/debian/patches/issue780 2014-03-31 05:59:11.000000000 +0000 @@ -0,0 +1,16 @@ +Description: UnboundMethod: fix a regression with Python 3 +Origin: upstream, https://github.com/nose-devs/nose/commit/43c35e49106916 +Last-Update: 2014-03-24 + +--- a/nose/pyversion.py ++++ b/nose/pyversion.py +@@ -89,7 +89,8 @@ + 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 diff -Nru nose-1.3.1/debian/patches/issue788 nose-1.3.1/debian/patches/issue788 --- nose-1.3.1/debian/patches/issue788 2014-03-19 10:50:17.000000000 +0000 +++ nose-1.3.1/debian/patches/issue788 2014-03-31 05:59:11.000000000 +0000 @@ -1,6 +1,5 @@ Description: fix issue680 test failure when LC_ALL=C -Author: Dmitry Shachnev -Forwarded: yes, https://github.com/nose-devs/nose/pull/788 +Origin: upstream, https://github.com/nose-devs/nose/commit/759d91cdcf654f Last-Update: 2014-03-19 --- a/functional_tests/test_xunit.py diff -Nru nose-1.3.1/debian/patches/series nose-1.3.1/debian/patches/series --- nose-1.3.1/debian/patches/series 2014-03-19 10:50:17.000000000 +0000 +++ nose-1.3.1/debian/patches/series 2014-03-31 05:59:11.000000000 +0000 @@ -2,6 +2,7 @@ no-google-analytics no-distribute_setup disable-unstable-tests +issue780 issue782 issue783 issue788