[Python-modules-commits] r22180 - in packages/python-networkx/trunk/debian (3 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Thu Jun 14 21:39:33 UTC 2012


    Date: Thursday, June 14, 2012 @ 21:39:32
  Author: morph
Revision: 22180

* debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff
  - fix an error in unittests

Added:
  packages/python-networkx/trunk/debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff
Modified:
  packages/python-networkx/trunk/debian/changelog
  packages/python-networkx/trunk/debian/patches/series

Modified: packages/python-networkx/trunk/debian/changelog
===================================================================
--- packages/python-networkx/trunk/debian/changelog	2012-06-14 20:55:13 UTC (rev 22179)
+++ packages/python-networkx/trunk/debian/changelog	2012-06-14 21:39:32 UTC (rev 22180)
@@ -12,8 +12,10 @@
     - refreshed patches
   * debian/patches/50_nosetests_verbosity_0
     - removed, merged upstream
+  * debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff
+    - fix an error in unittests
 
- -- Sandro Tosi <morph at debian.org>  Thu, 14 Jun 2012 22:55:02 +0200
+ -- Sandro Tosi <morph at debian.org>  Thu, 14 Jun 2012 23:39:02 +0200
 
 python-networkx (1.6-3) unstable; urgency=low
 

Added: packages/python-networkx/trunk/debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff
===================================================================
--- packages/python-networkx/trunk/debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff	                        (rev 0)
+++ packages/python-networkx/trunk/debian/patches/changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff	2012-06-14 21:39:32 UTC (rev 22180)
@@ -0,0 +1,14 @@
+Index: networkx/algorithms/simple_paths.py
+Description: fix failing doctest in all_simple_paths()
+Origin: https://networkx.lanl.gov/trac/changeset/fed4cb6e78dc7047c06522b0418ef5b0d8197290/networkx
+===================================================================
+--- python-networkx-1.7rc1.orig/networkx/algorithms/simple_paths.py	(revision 2197)
++++ python-networkx-1.7rc1/networkx/algorithms/simple_paths.py	(revision 2203)
+@@ -42,5 +42,6 @@
+     >>> G = nx.Graph()
+     >>> G.add_path([1,2,3])
+-    >>> G.add_path([1,20,30])
++    >>> G.add_path([1,20,3])
++    >>> paths = nx.all_simple_paths(G, source=1, target=3)
+     >>> print(list(paths))
+     [[1, 2, 3], [1, 20, 3]]

Modified: packages/python-networkx/trunk/debian/patches/series
===================================================================
--- packages/python-networkx/trunk/debian/patches/series	2012-06-14 20:55:13 UTC (rev 22179)
+++ packages/python-networkx/trunk/debian/patches/series	2012-06-14 21:39:32 UTC (rev 22180)
@@ -2,3 +2,4 @@
 20_example_dirs_remove
 30_use_local_objects.inv
 40_no_setuptools_in_requires.txt
+changeset_fed4cb6e78dc7047c06522b0418ef5b0d8197290.diff




More information about the Python-modules-commits mailing list