]> granicus.if.org Git - python/commitdiff
Correct name of 'defaultobj' parameter in PyDict_SetDefault() signature. (GH-11929)
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Mon, 25 Feb 2019 14:52:40 +0000 (19:52 +0500)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 25 Feb 2019 14:52:40 +0000 (16:52 +0200)
Doc/c-api/dict.rst

index 4e55c1a977cefb1d02f90d3e9d97f65ca4f083aa..0ced5a5fd0017028bfd78d580bba616966f739ff 100644 (file)
@@ -119,7 +119,7 @@ Dictionary Objects
    To get error reporting use :c:func:`PyDict_GetItemWithError()` instead.
 
 
-.. c:function:: PyObject* PyDict_SetDefault(PyObject *p, PyObject *key, PyObject *default)
+.. c:function:: PyObject* PyDict_SetDefault(PyObject *p, PyObject *key, PyObject *defaultobj)
 
    This is the same as the Python-level :meth:`dict.setdefault`.  If present, it
    returns the value corresponding to *key* from the dictionary *p*.  If the key