[Python-checkins] cpython: Issue #29311: Regenerate Argument Clinic.

serhiy.storchaka python-checkins at python.org
Sat Feb 4 01:05:31 EST 2017


https://hg.python.org/cpython/rev/222b9392a83b
changeset:   106398:222b9392a83b
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat Feb 04 08:05:07 2017 +0200
summary:
  Issue #29311: Regenerate Argument Clinic.

files:
  Objects/clinic/dictobject.c.h |  4 ++--
  Objects/dictobject.c          |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Objects/clinic/dictobject.c.h b/Objects/clinic/dictobject.c.h
--- a/Objects/clinic/dictobject.c.h
+++ b/Objects/clinic/dictobject.c.h
@@ -40,7 +40,7 @@
 "__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 @@
 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
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2769,7 +2769,7 @@
 
 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;

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list