Skip to content

Commit 8a43485

Browse files
committed
Tran's review
1 parent 12c7a0c commit 8a43485

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/zlibmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1714,6 +1714,7 @@ zlib__ZlibDecompressor_decompress_impl(ZlibDecompressor *self,
17141714
/*[clinic input]
17151715
@classmethod
17161716
zlib._ZlibDecompressor.__new__
1717+
17171718
wbits: int(c_default='MAX_WBITS') = MAX_WBITS
17181719
zdict: object(c_default='NULL') = b''
17191720
The predefined compression dictionary. This is a sequence of bytes
@@ -1728,7 +1729,7 @@ Create a decompressor object for decompressing data incrementally.
17281729

17291730
static PyObject *
17301731
zlib__ZlibDecompressor_impl(PyTypeObject *type, int wbits, PyObject *zdict)
1731-
/*[clinic end generated code: output=1065607df0d33baa input=710ad488cf0950a5]*/
1732+
/*[clinic end generated code: output=1065607df0d33baa input=9ebad0be6de226e2]*/
17321733
{
17331734
zlibstate *state = PyType_GetModuleState(type);
17341735
ZlibDecompressor *self = PyObject_New(ZlibDecompressor, type);

0 commit comments

Comments
 (0)