summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-04 06:05:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-02-04 06:05:07 (GMT)
commit19d2597ed50598ed0a04bffdfb246dcfb1de85c9 (patch)
tree99dda9c627ff44da814d1aaa1dc2ad895855d395
parentbbd256984db416f4c1e68f8a86b842eeaf36d7e0 (diff)
downloadcpython-19d2597ed50598ed0a04bffdfb246dcfb1de85c9.zip
cpython-19d2597ed50598ed0a04bffdfb246dcfb1de85c9.tar.gz
cpython-19d2597ed50598ed0a04bffdfb246dcfb1de85c9.tar.bz2
Issue #29311: Regenerate Argument Clinic.
-rw-r--r--Objects/clinic/dictobject.c.h4
-rw-r--r--Objects/dictobject.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/Objects/clinic/dictobject.c.h b/Objects/clinic/dictobject.c.h
index 97918e8..fb1e797 100644
--- a/Objects/clinic/dictobject.c.h
+++ b/Objects/clinic/dictobject.c.h
@@ -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]*/
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 00fd58c..43584b7 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -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;