summaryrefslogtreecommitdiffstats
path: root/Modules/_lzmamodule.c
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-10-28 20:35:23 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-10-28 20:35:23 (GMT)
commit3797065ac55997741fd625a30a8308c04ee5c9b9 (patch)
treecf67e5dabe3bfcab16f64afa5118fd8b207c6da6 /Modules/_lzmamodule.c
parentba4e58a02172df294f16c68f0b0c4ac80184e4b0 (diff)
downloadcpython-3797065ac55997741fd625a30a8308c04ee5c9b9.zip
cpython-3797065ac55997741fd625a30a8308c04ee5c9b9.tar.gz
cpython-3797065ac55997741fd625a30a8308c04ee5c9b9.tar.bz2
#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 'Modules/_lzmamodule.c')
-rw-r--r--Modules/_lzmamodule.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/Modules/_lzmamodule.c b/Modules/_lzmamodule.c
index b482a77..6436160 100644
--- a/Modules/_lzmamodule.c
+++ b/Modules/_lzmamodule.c
@@ -546,6 +546,14 @@ Compressor_flush(Compressor *self, PyObject *noargs)
return result;
}
+static PyObject *
+Compressor_getstate(Compressor *self, PyObject *noargs)
+{
+ PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
+ Py_TYPE(self)->tp_name);
+ return NULL;
+}
+
static int
Compressor_init_xz(lzma_stream *lzs, int check, uint32_t preset,
PyObject *filterspecs)
@@ -712,6 +720,7 @@ static PyMethodDef Compressor_methods[] = {
Compressor_compress_doc},
{"flush", (PyCFunction)Compressor_flush, METH_NOARGS,
Compressor_flush_doc},
+ {"__getstate__", (PyCFunction)Compressor_getstate, METH_NOARGS},
{NULL}
};
@@ -869,6 +878,14 @@ Decompressor_decompress(Decompressor *self, PyObject *args)
return result;
}
+static PyObject *
+Decompressor_getstate(Decompressor *self, PyObject *noargs)
+{
+ PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
+ Py_TYPE(self)->tp_name);
+ return NULL;
+}
+
static int
Decompressor_init_raw(lzma_stream *lzs, PyObject *filterspecs)
{
@@ -991,6 +1008,7 @@ Decompressor_dealloc(Decompressor *self)
static PyMethodDef Decompressor_methods[] = {
{"decompress", (PyCFunction)Decompressor_decompress, METH_VARARGS,
Decompressor_decompress_doc},
+ {"__getstate__", (PyCFunction)Decompressor_getstate, METH_NOARGS},
{NULL}
};