summaryrefslogtreecommitdiff
path: root/lang/python27/files/patch-Lib-test-test_zlib.py
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2008-10-13 08:23:00 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2008-10-13 08:23:00 +0000
commit3813a5dbe7d0608965d690d98e1730ad5c8878ff (patch)
treec6bc50f8d593ff6f8b9f46161b022682d1e508cd /lang/python27/files/patch-Lib-test-test_zlib.py
parent- Fix synergy crashing on copy and paste from Fedora (diff)
Introduce two new versions of Python: 2.6 and 3.0rc1 (finally!)
Python 2.6 will be the next default python version when enough testings of consumer ports are done. The new "2to3" program is renamed to 2to3-2.6 and 2to3-3.0 for each version, respectively. Repo-copied by: marcus
Diffstat (limited to 'lang/python27/files/patch-Lib-test-test_zlib.py')
-rw-r--r--lang/python27/files/patch-Lib-test-test_zlib.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/python27/files/patch-Lib-test-test_zlib.py b/lang/python27/files/patch-Lib-test-test_zlib.py
deleted file mode 100644
index 425572d2574d..000000000000
--- a/lang/python27/files/patch-Lib-test-test_zlib.py
+++ /dev/null
@@ -1,14 +0,0 @@
---- Lib/test/test_zlib.py 2008/04/08 23:47:30 62234
-+++ Lib/test/test_zlib.py 2008/04/09 00:25:17 62235
-@@ -83,6 +83,11 @@
- # verify failure on building decompress object with bad params
- self.assertRaises(ValueError, zlib.decompressobj, 0)
-
-+ def test_decompressobj_badflush(self):
-+ # verify failure on calling decompressobj.flush with bad params
-+ self.assertRaises(ValueError, zlib.decompressobj().flush, 0)
-+ self.assertRaises(ValueError, zlib.decompressobj().flush, -1)
-+
-
-
- class CompressTestCase(unittest.TestCase):