@@ -1895,7 +1895,7 @@ zlib.adler32_combine -> unsigned_int
18951895 adler2: unsigned_int(bitwise=True)
18961896 Adler-32 checksum for sequence B
18971897
1898- len2: object
1898+ len2: object(subclass_of='&PyLong_Type')
18991899 Length of sequence B
19001900 /
19011901
@@ -1909,7 +1909,7 @@ return the Adler-32 checksum of A and B concatenated.
19091909static unsigned int
19101910zlib_adler32_combine_impl (PyObject * module , unsigned int adler1 ,
19111911 unsigned int adler2 , PyObject * len2 )
1912- /*[clinic end generated code: output=61842cefb16afb1b input=6fc6ff7cff42a2f2 ]*/
1912+ /*[clinic end generated code: output=61842cefb16afb1b input=51bb045c95130c6f ]*/
19131913{
19141914#if defined(Z_WANT64 )
19151915 z_off64_t len = convert_to_z_off_t (len2 );
@@ -1980,7 +1980,7 @@ zlib.crc32_combine -> unsigned_int
19801980 crc2: unsigned_int(bitwise=True)
19811981 CRC-32 checksum for sequence B
19821982
1983- len2: object
1983+ len2: object(subclass_of='&PyLong_Type')
19841984 Length of sequence B
19851985 /
19861986
@@ -1994,7 +1994,7 @@ return the CRC-32 checksum of A and B concatenated.
19941994static unsigned int
19951995zlib_crc32_combine_impl (PyObject * module , unsigned int crc1 ,
19961996 unsigned int crc2 , PyObject * len2 )
1997- /*[clinic end generated code: output=c4def907c602e6eb input=322bf6345c88161f ]*/
1997+ /*[clinic end generated code: output=c4def907c602e6eb input=9c8a065d9040dc66 ]*/
19981998{
19991999#if defined(Z_WANT64 )
20002000 z_off64_t len = convert_to_z_off_t (len2 );
0 commit comments