@@ -828,7 +828,7 @@ zlib_Decompress_decompress_impl(compobject *self, Py_buffer *data, unsigned int
828828/*[clinic input]
829829zlib.Compress.flush
830830
831- mode: int(c_default="Z_FINISH") = Z_FINISH
831+ mode: int(c_default="Z_FINISH") = zlib. Z_FINISH
832832 One of the constants Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH.
833833 If mode == Z_FINISH, the compressor object can no longer be
834834 used after calling the flush() method. Otherwise, more data
@@ -840,7 +840,7 @@ Return a bytes object containing any remaining compressed data.
840840
841841static PyObject *
842842zlib_Compress_flush_impl (compobject * self , int mode )
843- /*[clinic end generated code: output=a203f4cefc9de727 input=6982996afe0772d8 ]*/
843+ /*[clinic end generated code: output=a203f4cefc9de727 input=73ed066794bd15bc ]*/
844844{
845845 int err ;
846846 unsigned int length = DEF_BUF_SIZE , new_length ;
@@ -1046,7 +1046,7 @@ zlib_Decompress_copy_impl(compobject *self)
10461046/*[clinic input]
10471047zlib.Decompress.flush
10481048
1049- length: uint(c_default="DEF_BUF_SIZE") = DEF_BUF_SIZE
1049+ length: uint(c_default="DEF_BUF_SIZE") = zlib. DEF_BUF_SIZE
10501050 the initial size of the output buffer.
10511051 /
10521052
@@ -1055,7 +1055,7 @@ Return a bytes object containing any remaining decompressed data.
10551055
10561056static PyObject *
10571057zlib_Decompress_flush_impl (compobject * self , unsigned int length )
1058- /*[clinic end generated code: output=db6fb753ab698e22 input=fe7954136712c353 ]*/
1058+ /*[clinic end generated code: output=db6fb753ab698e22 input=1580956505978993 ]*/
10591059{
10601060 int err ;
10611061 unsigned int new_length ;
0 commit comments