Skip to content

Commit f3fca34

Browse files
committed
remove rST syntax in clinic
1 parent cc160a7 commit f3fca34

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Modules/clinic/zlibmodule.c.h

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/zlibmodule.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1901,15 +1901,15 @@ zlib.adler32_combine -> unsigned_int
19011901
19021902
Combine 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

19091909
static unsigned int
19101910
zlib_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
19871987
Combine 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

19941994
static unsigned int
19951995
zlib_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

Comments
 (0)