aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/bz2file/files/bz2file-0.98-always-threading.patch')
-rw-r--r--dev-python/bz2file/files/bz2file-0.98-always-threading.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/bz2file/files/bz2file-0.98-always-threading.patch b/dev-python/bz2file/files/bz2file-0.98-always-threading.patch
new file mode 100644
index 000000000..ec11bce25
--- /dev/null
+++ b/dev-python/bz2file/files/bz2file-0.98-always-threading.patch
@@ -0,0 +1,22 @@
+threading is always available in newer pythons
+
+https://github.com/nvawda/bz2file/issues/7
+
+--- a/test_bz2file.py
++++ b/test_bz2file.py
+@@ -496,15 +496,6 @@ class BZ2FileTest(BaseTest):
+ for t in threads:
+ t.join()
+
+- def testWithoutThreading(self):
+- if not hasattr(support, "import_fresh_module"):
+- return
+- module = support.import_fresh_module("bz2file", blocked=("threading",))
+- with module.BZ2File(self.filename, "wb") as f:
+- f.write(b"abc")
+- with module.BZ2File(self.filename, "rb") as f:
+- self.assertEqual(f.read(), b"abc")
+-
+ def testMixedIterationAndReads(self):
+ self.createTempFile()
+ linelen = len(self.TEXT_LINES[0])