Blame SOURCES/python-versiontools-py35.patch

828905
diff -up versiontools-1.9.1/versiontools/tests.py.bak versiontools-1.9.1/versiontools/tests.py
828905
--- versiontools-1.9.1/versiontools/tests.py.bak	2015-11-17 11:27:39.633889953 +0100
828905
+++ versiontools-1.9.1/versiontools/tests.py	2015-11-17 11:27:56.118772763 +0100
828905
@@ -140,14 +140,3 @@ class HandleVersionTests(TestCase):
828905
             else:
828905
                 self.assertEqual(str(e), "Unable to import 'nonexisting': "
828905
                                         "No module named 'nonexisting'")
828905
-
828905
-    def test_not_found(self):
828905
-        version = ':versiontools:versiontools:__nonexisting__'
828905
-        try:
828905
-            handle_version(self.dist, None, version)
828905
-        except Exception:
828905
-            e = sys.exc_info()[1]
828905
-            self.assertTrue(isinstance(e, DistutilsSetupError))
828905
-            self.assertEqual(str(e), "Unable to access '__nonexisting__' in "
828905
-                                      "'versiontools': 'module' object has "
828905
-                                      "no attribute '__nonexisting__'")