diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-05 11:34:01 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-05 11:34:01 (GMT) |
commit | 54c1391ba999db670f54911433e8690fcf7ba943 (patch) | |
tree | 2af5e1d43674ccf84fe17b5644c693d07cc41e42 /Modules/clinic | |
parent | 2aa15d80977002f7ac76c7ae9e39e4f39f245374 (diff) | |
download | cpython-54c1391ba999db670f54911433e8690fcf7ba943.zip cpython-54c1391ba999db670f54911433e8690fcf7ba943.tar.gz cpython-54c1391ba999db670f54911433e8690fcf7ba943.tar.bz2 |
Issue #20489: Explicitly qualified expressions for default values in methods.
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/zlibmodule.c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/clinic/zlibmodule.c.h b/Modules/clinic/zlibmodule.c.h index 02911ba..f810fcf 100644 --- a/Modules/clinic/zlibmodule.c.h +++ b/Modules/clinic/zlibmodule.c.h @@ -245,7 +245,7 @@ exit: } PyDoc_STRVAR(zlib_Compress_flush__doc__, -"sig=($self, mode=Z_FINISH)\n" +"sig=($self, mode=zlib.Z_FINISH)\n" "Return a bytes object containing any remaining compressed data.\n" "\n" " mode\n" @@ -325,7 +325,7 @@ zlib_Decompress_copy(compobject *self, PyObject *Py_UNUSED(ignored)) #endif /* !defined(ZLIB_DECOMPRESS_COPY_METHODDEF) */ PyDoc_STRVAR(zlib_Decompress_flush__doc__, -"sig=($self, length=DEF_BUF_SIZE)\n" +"sig=($self, length=zlib.DEF_BUF_SIZE)\n" "Return a bytes object containing any remaining decompressed data.\n" "\n" " length\n" @@ -424,4 +424,4 @@ exit: return return_value; } -/*[clinic end generated code: output=21556008559f839c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=67d3e81eafcfb982 input=a9049054013a1b77]*/ |