summaryrefslogtreecommitdiff
path: root/Lib/test/test_lzma.py
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-10-28 21:35:23 +0100
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-10-28 21:35:23 +0100
commit284a788ebc97e88858f9299669470438dcf0ebfb (patch)
tree9bae27c8c8944e6fff9f82ca850d5e64d649b7a6 /Lib/test/test_lzma.py
parentbc3101edfd79f9d63af2f7503c94e1c5390f9074 (diff)
downloadcpython-284a788ebc97e88858f9299669470438dcf0ebfb.tar.gz
#19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).
The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter.
Diffstat (limited to 'Lib/test/test_lzma.py')
-rw-r--r--Lib/test/test_lzma.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_lzma.py b/Lib/test/test_lzma.py
index a13cf3bd09..ad9045604e 100644
--- a/Lib/test/test_lzma.py
+++ b/Lib/test/test_lzma.py
@@ -1,5 +1,6 @@
from io import BytesIO, UnsupportedOperation
import os
+import pickle
import random
import unittest
@@ -216,6 +217,14 @@ class CompressorDecompressorTestCase(unittest.TestCase):
finally:
input = cdata = ddata = None
+ # Pickling raises an exception; there's no way to serialize an lzma_stream.
+
+ def test_pickle(self):
+ with self.assertRaises(TypeError):
+ pickle.dumps(LZMACompressor())
+ with self.assertRaises(TypeError):
+ pickle.dumps(LZMADecompressor())
+
class CompressDecompressFunctionTestCase(unittest.TestCase):