@@ -1901,15 +1901,15 @@ zlib.adler32_combine -> unsigned_int
19011901
19021902Combine two Adler-32 checksums into one.
19031903
1904- Given the Adler-32 checksum * adler1* of a sequence ``A`` and the
1905- Adler-32 checksum * adler2* of a sequence ``B`` of length * len2* ,
1906- return the Adler-32 checksum of ``A`` and ``B`` concatenated.
1904+ Given the Adler-32 checksum ' adler1' of a sequence A and the
1905+ Adler-32 checksum ' adler2' of a sequence B of length ' len2' ,
1906+ return the Adler-32 checksum of A and B concatenated.
19071907[clinic start generated code]*/
19081908
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=8a706b73cbe1a31b ]*/
1912+ /*[clinic end generated code: output=61842cefb16afb1b input=6fc6ff7cff42a2f2 ]*/
19131913{
19141914#if defined(Z_WANT64 )
19151915 z_off64_t len = convert_to_z_off_t (len2 );
@@ -1986,15 +1986,15 @@ zlib.crc32_combine -> unsigned_int
19861986
19871987Combine two CRC-32 checksums into one.
19881988
1989- Given the CRC-32 checksum * crc1* of a sequence ``A`` and the
1990- CRC-32 checksum * crc2* of a sequence ``B`` of length * len2* ,
1991- return the CRC-32 checksum of ``A`` and ``B`` concatenated.
1989+ Given the CRC-32 checksum ' crc1' of a sequence A and the
1990+ CRC-32 checksum ' crc2' of a sequence B of length ' len2' ,
1991+ return the CRC-32 checksum of A and B concatenated.
19921992[clinic start generated code]*/
19931993
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=8eb70325fdee010d ]*/
1997+ /*[clinic end generated code: output=c4def907c602e6eb input=322bf6345c88161f ]*/
19981998{
19991999#if defined(Z_WANT64 )
20002000 z_off64_t len = convert_to_z_off_t (len2 );
0 commit comments