mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/* clang-format off */
|
|
/*[clinic input]
|
|
preserve
|
|
[clinic start generated code]*/
|
|
|
|
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.");
|
|
|
|
#define DICT_FROMKEYS_METHODDEF \
|
|
{"fromkeys", (PyCFunction)dict_fromkeys, METH_FASTCALL|METH_CLASS, dict_fromkeys__doc__},
|
|
|
|
static PyObject *
|
|
dict_fromkeys_impl(PyTypeObject *type, PyObject *iterable, PyObject *value);
|
|
|
|
static PyObject *
|
|
dict_fromkeys(PyTypeObject *type, PyObject **args, Py_ssize_t nargs)
|
|
{
|
|
PyObject *return_value = NULL;
|
|
PyObject *iterable;
|
|
PyObject *value = Py_None;
|
|
|
|
if (!_PyArg_UnpackStack(args, nargs, "fromkeys",
|
|
1, 2,
|
|
&iterable, &value)) {
|
|
goto exit;
|
|
}
|
|
return_value = dict_fromkeys_impl(type, iterable, value);
|
|
|
|
exit:
|
|
return return_value;
|
|
}
|
|
|
|
PyDoc_STRVAR(dict___contains____doc__,
|
|
"__contains__($self, key, /)\n"
|
|
"--\n"
|
|
"\n"
|
|
"True if D has a key k, else False.");
|
|
|
|
#define DICT___CONTAINS___METHODDEF \
|
|
{"__contains__", (PyCFunction)dict___contains__, METH_O|METH_COEXIST, dict___contains____doc__},
|
|
/*[clinic end generated code: output=d6997a57899cf28d input=a9049054013a1b77]*/
|