diff options
author | Larry Hastings <larry@hastings.org> | 2015-05-08 06:30:09 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2015-05-08 06:30:09 (GMT) |
commit | 38337d1e1542eddd7f3f839535c8b440a3c90499 (patch) | |
tree | 64cc756a2f10e456c93f7c0812e472d199842fcd /Modules/_gdbmmodule.c | |
parent | 95283fb58951aaa0ee7cfefcbf8785f132819529 (diff) | |
download | cpython-38337d1e1542eddd7f3f839535c8b440a3c90499.zip cpython-38337d1e1542eddd7f3f839535c8b440a3c90499.tar.gz cpython-38337d1e1542eddd7f3f839535c8b440a3c90499.tar.bz2 |
Issue #24000: Improved Argument Clinic's mapping of converters to legacy
"format units". Updated the documentation to match.
Diffstat (limited to 'Modules/_gdbmmodule.c')
-rw-r--r-- | Modules/_gdbmmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_gdbmmodule.c b/Modules/_gdbmmodule.c index cce5c7e..f070a14 100644 --- a/Modules/_gdbmmodule.c +++ b/Modules/_gdbmmodule.c @@ -383,7 +383,7 @@ _gdbm_gdbm_firstkey_impl(dbmobject *self) /*[clinic input] _gdbm.gdbm.nextkey - key: str(accept={str, robuffer}, length=True) + key: str(accept={str, robuffer}, zeroes=True) / Returns the key that follows key in the traversal. @@ -400,7 +400,7 @@ to create a list in memory that contains them all: static PyObject * _gdbm_gdbm_nextkey_impl(dbmobject *self, const char *key, Py_ssize_clean_t key_length) -/*[clinic end generated code: output=192ab892de6eb2f6 input=1eb2ff9b4b0e6ffd]*/ +/*[clinic end generated code: output=192ab892de6eb2f6 input=1f1606943614e36f]*/ { PyObject *v; datum dbm_key, nextkey; |