Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19d2597

Browse files
Issue #29311: Regenerate Argument Clinic.
1 parent bbd2569 commit 19d2597

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Objects/clinic/dictobject.c.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PyDoc_STRVAR(dict___contains____doc__,
4040
"__contains__($self, key, /)\n"
4141
"--\n"
4242
"\n"
43-
"True if the dictionary has a specified key, else False.");
43+
"True if the dictionary has the specified key, else False.");
4444

4545
#define DICT___CONTAINS___METHODDEF \
4646
{"__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
115115
exit:
116116
return return_value;
117117
}
118-
/*[clinic end generated code: output=91aa6a9f3c402b1b input=a9049054013a1b77]*/
118+
/*[clinic end generated code: output=4d57df133cf66e53 input=a9049054013a1b77]*/

Objects/dictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@ True if the dictionary has the specified key, else False.
27692769

27702770
static PyObject *
27712771
dict___contains__(PyDictObject *self, PyObject *key)
2772-
/*[clinic end generated code: output=a3d03db709ed6e6b input=f39613886bf975b7]*/
2772+
/*[clinic end generated code: output=a3d03db709ed6e6b input=fe1cb42ad831e820]*/
27732773
{
27742774
register PyDictObject *mp = self;
27752775
Py_hash_t hash;

0 commit comments

Comments
 (0)