diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-20 18:49:24 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-20 23:07:22 +0200 |
commit | d93fbfc17f52b0fc3911579ce89d1eb9474527bc (patch) | |
tree | 3d64ff9ba379a39797465733dc203882d7701b1d /dev-python/south | |
parent | dev-python/socketpool: remove unused patch (diff) | |
download | gentoo-d93fbfc17f52b0fc3911579ce89d1eb9474527bc.tar.gz gentoo-d93fbfc17f52b0fc3911579ce89d1eb9474527bc.tar.bz2 gentoo-d93fbfc17f52b0fc3911579ce89d1eb9474527bc.zip |
dev-python/south: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2375
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/south')
-rw-r--r-- | dev-python/south/files/south-0.7.5-tests.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/south/files/south-0.7.5-tests.patch b/dev-python/south/files/south-0.7.5-tests.patch deleted file mode 100644 index 2e4da84d975d..000000000000 --- a/dev-python/south/files/south-0.7.5-tests.patch +++ /dev/null @@ -1,23 +0,0 @@ -http://south.aeracode.org/ticket/1256 -diff -ur south-0.7.5.orig/south/tests/db.py south-0.7.5/south/tests/db.py ---- south/tests/db.py 2012-05-08 18:37:14.000000000 +0800 -+++ south/tests/db.py 2013-05-18 15:46:23.920225709 +0800 -@@ -1,5 +1,8 @@ --import datetime --import unittest -+import datetime, sys -+if sys.version_info == (2, 7): -+ import unittest -+else: -+ import unittest2 as unittest - - from south.db import db, generic - from django.db import connection, models -@@ -71,6 +74,7 @@ - else: - self.fail("Just-deleted table could be selected!") - -+ @unittest.expectedFailure - def test_nonexistent_delete(self): - """ - Test deletion of nonexistent tables. |