diff options
author | Larry Hastings <larry@hastings.org> | 2014-01-04 20:44:57 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-01-04 20:44:57 (GMT) |
commit | 78cf85c669d9e8b14e290b87921d08266b6b7cb8 (patch) | |
tree | 01382e042c39ce1216e14e7c24a05c0846e8c2da /Modules | |
parent | 3cceb384861eeae1f164568a9ea30534fdf2c87c (diff) | |
download | cpython-78cf85c669d9e8b14e290b87921d08266b6b7cb8.zip cpython-78cf85c669d9e8b14e290b87921d08266b6b7cb8.tar.gz cpython-78cf85c669d9e8b14e290b87921d08266b6b7cb8.tar.bz2 |
Issue #19659: Added documentation for Argument Clinic.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/zlibmodule.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 72137db..d197d88 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -312,9 +312,6 @@ class uint_converter(CConverter): type = 'unsigned int' converter = 'uint_converter' -class compobject_converter(self_converter): - type = "compobject *" - [python]*/ /*[python checksum: da39a3ee5e6b4b0d3255bfef95601890afd80709]*/ @@ -750,7 +747,7 @@ save_unconsumed_input(compobject *self, int err) zlib.Decompress.decompress - self: compobject + self: self(type="compobject *") data: Py_buffer The binary data to decompress. @@ -1032,7 +1029,7 @@ PyZlib_flush(compobject *self, PyObject *args) /*[clinic] zlib.Compress.copy - self: compobject + self: self(type="compobject *") Return a copy of the compression object. [clinic]*/ |