[Python-modules-commits] r12090 - in packages/python-graph/trunk/debian/patches (1 file)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Tue Mar 2 20:01:53 UTC 2010
Date: Tuesday, March 2, 2010 @ 20:01:49
Author: morph
Revision: 12090
updated
Modified:
packages/python-graph/trunk/debian/patches/10_exceptions_catch_fix.dpatch
Modified: packages/python-graph/trunk/debian/patches/10_exceptions_catch_fix.dpatch
===================================================================
--- packages/python-graph/trunk/debian/patches/10_exceptions_catch_fix.dpatch 2010-03-02 20:01:17 UTC (rev 12089)
+++ packages/python-graph/trunk/debian/patches/10_exceptions_catch_fix.dpatch 2010-03-02 20:01:49 UTC (rev 12090)
@@ -6,7 +6,7 @@
@DPATCH@
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' python-graph~/core/setup.py python-graph/core/setup.py
--- python-graph~/core/setup.py 2009-11-17 15:37:51.000000000 +0100
-+++ python-graph/core/setup.py 2010-02-27 11:41:17.232986582 +0100
++++ python-graph/core/setup.py 2010-03-02 20:54:14.238908507 +0100
@@ -5,7 +5,7 @@
try:
@@ -18,7 +18,7 @@
from setuptools import setup, find_packages
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' python-graph~/tests/testrunner.py python-graph/tests/testrunner.py
--- python-graph~/tests/testrunner.py 2009-12-01 00:15:58.000000000 +0100
-+++ python-graph/tests/testrunner.py 2010-02-27 11:41:08.468985815 +0100
++++ python-graph/tests/testrunner.py 2010-03-02 20:54:14.238908507 +0100
@@ -49,7 +49,7 @@
for each_module in test_modules():
try:
@@ -35,3 +35,22 @@
-
\ No newline at end of file
+
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' python-graph~/tests/unittests-heuristics.py python-graph/tests/unittests-heuristics.py
+--- python-graph~/tests/unittests-heuristics.py 2009-11-09 16:28:41.000000000 +0100
++++ python-graph/tests/unittests-heuristics.py 2010-03-02 20:54:38.210908918 +0100
+@@ -65,7 +65,7 @@
+
+ try:
+ result = pygraph.algorithms.minmax.heuristic_search( self.G, "England", "Sealand" , heuristic )
+- except exceptions.NodeUnreachable as _:
++ except exceptions.NodeUnreachable:
+ return
+
+ assert False, "This test should raise an unreachable error."
+@@ -91,4 +91,4 @@
+ assert result == ['A', 'D', 'C']
+
+ if __name__ == "__main__":
+- unittest.main()
+\ No newline at end of file
++ unittest.main()
More information about the Python-modules-commits
mailing list