[Python-modules-commits] r27620 - in packages/nose/trunk/debian (3 files)

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Wed Feb 12 14:52:39 UTC 2014


    Date: Wednesday, February 12, 2014 @ 14:52:38
  Author: mitya57-guest
Revision: 27620

* Team upload.
* Add a patch from Barry Warsaw to fix FTBFS with Python 3.4.
* Rebuild closes: #730749.

Added:
  packages/nose/trunk/debian/patches/issue759
Modified:
  packages/nose/trunk/debian/changelog
  packages/nose/trunk/debian/patches/series

Modified: packages/nose/trunk/debian/changelog
===================================================================
--- packages/nose/trunk/debian/changelog	2014-02-12 12:56:02 UTC (rev 27619)
+++ packages/nose/trunk/debian/changelog	2014-02-12 14:52:38 UTC (rev 27620)
@@ -1,3 +1,11 @@
+nose (1.3.0-3) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Add a patch from Barry Warsaw to fix FTBFS with Python 3.4.
+  * Rebuild closes: #730749.
+
+ -- Dmitry Shachnev <mitya57 at gmail.com>  Wed, 12 Feb 2014 18:48:36 +0400
+
 nose (1.3.0-2.1) unstable; urgency=low
 
   * Non-maintainer upload.

Added: packages/nose/trunk/debian/patches/issue759
===================================================================
--- packages/nose/trunk/debian/patches/issue759	                        (rev 0)
+++ packages/nose/trunk/debian/patches/issue759	2014-02-12 14:52:38 UTC (rev 27620)
@@ -0,0 +1,27 @@
+Description: Add upcall to super's __init__() so that expected attributes will
+ be present.
+Author: Barry Warsaw <barry at ubuntu.com>
+Bug: https://github.com/nose-devs/nose/issues/759
+
+--- a/nose/suite.py
++++ b/nose/suite.py
+@@ -573,6 +573,7 @@
+     control.
+     """
+     def __init__(self, suite, finalize):
++        super(FinalizingSuiteWrapper, self).__init__()
+         self.suite = suite
+         self.finalize = finalize
+ 
+--- a/nose/config.py
++++ b/nose/config.py
+@@ -620,9 +620,6 @@
+     def __getnewargs__(self):
+         return ()
+ 
+-    def __getattr__(self, attr):
+-        return None
+-
+     def __nonzero__(self):
+         return False
+ 

Modified: packages/nose/trunk/debian/patches/series
===================================================================
--- packages/nose/trunk/debian/patches/series	2014-02-12 12:56:02 UTC (rev 27619)
+++ packages/nose/trunk/debian/patches/series	2014-02-12 14:52:38 UTC (rev 27620)
@@ -2,3 +2,4 @@
 no-google-analytics
 no-distribute_setup
 disable-unstable-tests
+issue759




More information about the Python-modules-commits mailing list