]> granicus.if.org Git - python/commitdiff
Issue #29311: Regenerate Argument Clinic.
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Feb 2017 06:05:07 +0000 (08:05 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 4 Feb 2017 06:05:07 +0000 (08:05 +0200)
Objects/clinic/dictobject.c.h
Objects/dictobject.c

index 97918e82a7a521380362fca0cbf8de44eee7ece1..fb1e797de1e1c348bbfb6254349fe776493e1a4e 100644 (file)
@@ -40,7 +40,7 @@ PyDoc_STRVAR(dict___contains____doc__,
 "__contains__($self, key, /)\n"
 "--\n"
 "\n"
-"True if the dictionary has a specified key, else False.");
+"True if the dictionary has the specified key, else False.");
 
 #define DICT___CONTAINS___METHODDEF    \
     {"__contains__", (PyCFunction)dict___contains__, METH_O|METH_COEXIST, dict___contains____doc__},
@@ -115,4 +115,4 @@ dict_setdefault(PyDictObject *self, PyObject **args, Py_ssize_t nargs, PyObject
 exit:
     return return_value;
 }
-/*[clinic end generated code: output=91aa6a9f3c402b1b input=a9049054013a1b77]*/
+/*[clinic end generated code: output=4d57df133cf66e53 input=a9049054013a1b77]*/
index 00fd58c81d359c2f039bf3afa2e6c51f7484507b..43584b7bb2444b1b880e60b74a8fa93f4f303594 100644 (file)
@@ -2769,7 +2769,7 @@ True if the dictionary has the specified key, else False.
 
 static PyObject *
 dict___contains__(PyDictObject *self, PyObject *key)
-/*[clinic end generated code: output=a3d03db709ed6e6b input=f39613886bf975b7]*/
+/*[clinic end generated code: output=a3d03db709ed6e6b input=fe1cb42ad831e820]*/
 {
     register PyDictObject *mp = self;
     Py_hash_t hash;