mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
gh-111178: Fix function signatures for multiple tests (#131496)
This commit is contained in:
parent
486d537065
commit
34c1ea3109
15 changed files with 112 additions and 69 deletions
|
|
@ -1363,8 +1363,9 @@ class zlib.ZlibDecompressor "ZlibDecompressor *" "&ZlibDecompressorType"
|
|||
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=0658178ab94645df]*/
|
||||
|
||||
static void
|
||||
ZlibDecompressor_dealloc(ZlibDecompressor *self)
|
||||
ZlibDecompressor_dealloc(PyObject *op)
|
||||
{
|
||||
ZlibDecompressor *self = (ZlibDecompressor*)op;
|
||||
PyObject *type = (PyObject *)Py_TYPE(self);
|
||||
PyThread_free_lock(self->lock);
|
||||
if (self->is_initialised) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue