diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-10-24 18:14:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 18:14:23 (GMT) |
commit | 8cd1dbae32d9303caac3a473d3332f17bc98c921 (patch) | |
tree | 883e8288636eb076d168d2ea57b7a406e2a9d429 /Modules/clinic/_lzmamodule.c.h | |
parent | 473db47747bb8bc986d88ad81799bcbd88153ac5 (diff) | |
download | cpython-8cd1dbae32d9303caac3a473d3332f17bc98c921.zip cpython-8cd1dbae32d9303caac3a473d3332f17bc98c921.tar.gz cpython-8cd1dbae32d9303caac3a473d3332f17bc98c921.tar.bz2 |
bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 (GH-22870)
Diffstat (limited to 'Modules/clinic/_lzmamodule.c.h')
-rw-r--r-- | Modules/clinic/_lzmamodule.c.h | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/Modules/clinic/_lzmamodule.c.h b/Modules/clinic/_lzmamodule.c.h index e15cc0c..526031a 100644 --- a/Modules/clinic/_lzmamodule.c.h +++ b/Modules/clinic/_lzmamodule.c.h @@ -65,23 +65,6 @@ _lzma_LZMACompressor_flush(Compressor *self, PyObject *Py_UNUSED(ignored)) return _lzma_LZMACompressor_flush_impl(self); } -PyDoc_STRVAR(_lzma_LZMACompressor___reduce____doc__, -"__reduce__($self, /)\n" -"--\n" -"\n"); - -#define _LZMA_LZMACOMPRESSOR___REDUCE___METHODDEF \ - {"__reduce__", (PyCFunction)_lzma_LZMACompressor___reduce__, METH_NOARGS, _lzma_LZMACompressor___reduce____doc__}, - -static PyObject * -_lzma_LZMACompressor___reduce___impl(Compressor *self); - -static PyObject * -_lzma_LZMACompressor___reduce__(Compressor *self, PyObject *Py_UNUSED(ignored)) -{ - return _lzma_LZMACompressor___reduce___impl(self); -} - PyDoc_STRVAR(_lzma_LZMADecompressor_decompress__doc__, "decompress($self, /, data, max_length=-1)\n" "--\n" @@ -228,23 +211,6 @@ exit: return return_value; } -PyDoc_STRVAR(_lzma_LZMADecompressor___reduce____doc__, -"__reduce__($self, /)\n" -"--\n" -"\n"); - -#define _LZMA_LZMADECOMPRESSOR___REDUCE___METHODDEF \ - {"__reduce__", (PyCFunction)_lzma_LZMADecompressor___reduce__, METH_NOARGS, _lzma_LZMADecompressor___reduce____doc__}, - -static PyObject * -_lzma_LZMADecompressor___reduce___impl(Decompressor *self); - -static PyObject * -_lzma_LZMADecompressor___reduce__(Decompressor *self, PyObject *Py_UNUSED(ignored)) -{ - return _lzma_LZMADecompressor___reduce___impl(self); -} - PyDoc_STRVAR(_lzma_is_check_supported__doc__, "is_check_supported($module, check_id, /)\n" "--\n" @@ -320,4 +286,4 @@ exit: return return_value; } -/*[clinic end generated code: output=d89b6159e98544be input=a9049054013a1b77]*/ +/*[clinic end generated code: output=867b9e334053b679 input=a9049054013a1b77]*/ |