2021-08-12 00:42:14 -07:00
|
|
|
/* clang-format off */
|
2021-08-08 09:38:33 +05:30
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
PyDoc_STRVAR(
|
|
|
|
dict_fromkeys__doc__,
|
|
|
|
"fromkeys($type, iterable, value=None, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Returns a new dict with keys from iterable and values equal to value.");
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
#define DICT_FROMKEYS_METHODDEF \
|
|
|
|
{"fromkeys", (PyCFunction)dict_fromkeys, METH_VARARGS | METH_CLASS, \
|
|
|
|
dict_fromkeys__doc__},
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
static PyObject *dict_fromkeys_impl(PyTypeObject *type, PyObject *iterable,
|
|
|
|
PyObject *value);
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
static PyObject *dict_fromkeys(PyTypeObject *type, PyObject *args) {
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *iterable;
|
|
|
|
PyObject *value = Py_None;
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
if (!PyArg_UnpackTuple(args, "fromkeys", 1, 2, &iterable, &value)) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
return_value = dict_fromkeys_impl(type, iterable, value);
|
2021-08-08 09:38:33 +05:30
|
|
|
|
|
|
|
exit:
|
2021-08-12 00:42:14 -07:00
|
|
|
return return_value;
|
2021-08-08 09:38:33 +05:30
|
|
|
}
|
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
PyDoc_STRVAR(dict___contains____doc__, "__contains__($self, key, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"True if D has a key k, else False.");
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07:00
|
|
|
#define DICT___CONTAINS___METHODDEF \
|
|
|
|
{"__contains__", (PyCFunction)dict___contains__, METH_O | METH_COEXIST, \
|
|
|
|
dict___contains____doc__},
|
2021-08-08 09:38:33 +05:30
|
|
|
/*[clinic end generated code: output=926326109e3d9839 input=a9049054013a1b77]*/
|