mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Issue #20390: Small fixes and improvements for Argument Clinic.
This commit is contained in:
parent
9ad116bcd0
commit
c20472640c
18 changed files with 164 additions and 125 deletions
|
|
@ -83,8 +83,8 @@ zlib_error(z_stream zst, int err, char *msg)
|
|||
|
||||
/*[clinic input]
|
||||
module zlib
|
||||
class zlib.Compress
|
||||
class zlib.Decompress
|
||||
class zlib.Compress "compobject *" "&Comptype"
|
||||
class zlib.Decompress "compobject *" "&Decomptype"
|
||||
[clinic start generated code]*/
|
||||
/*[clinic end generated code: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709]*/
|
||||
|
||||
|
|
@ -748,8 +748,6 @@ save_unconsumed_input(compobject *self, int err)
|
|||
|
||||
zlib.Decompress.decompress
|
||||
|
||||
self: self(type="compobject *")
|
||||
|
||||
data: Py_buffer
|
||||
The binary data to decompress.
|
||||
max_length: uint = 0
|
||||
|
|
@ -1030,8 +1028,6 @@ PyZlib_flush(compobject *self, PyObject *args)
|
|||
/*[clinic input]
|
||||
zlib.Compress.copy
|
||||
|
||||
self: self(type="compobject *")
|
||||
|
||||
Return a copy of the compression object.
|
||||
[clinic start generated code]*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue