diff options
author | Georg Brandl <georg@python.org> | 2006-04-01 07:39:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-04-01 07:39:41 (GMT) |
commit | 22a9dc889df1e9d5a36e72004bc090f0b74b1902 (patch) | |
tree | 7053d899adb1038ab6b646d5fa4c6276e2a3d263 /Modules | |
parent | dcfdae7d72177d2897e3bd0eb4d3ef19dc51df08 (diff) | |
download | cpython-22a9dc889df1e9d5a36e72004bc090f0b74b1902.zip cpython-22a9dc889df1e9d5a36e72004bc090f0b74b1902.tar.gz cpython-22a9dc889df1e9d5a36e72004bc090f0b74b1902.tar.bz2 |
Patch #1459631: documnent zlib.Decompress.flush() length parameter.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/zlibmodule.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 725755d..35b8c32 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -654,7 +654,9 @@ PyZlib_flush(compobject *self, PyObject *args) } PyDoc_STRVAR(decomp_flush__doc__, -"flush() -- Return a string containing any remaining decompressed data.\n" +"flush( [length] ) -- Return a string containing any remaining\n" +"decompressed data. length, if given, is the initial size of the\n" +"output buffer.\n" "\n" "The decompressor object can no longer be used after this call."); |