Lines Matching defs:value
6 "fromkeys($type, iterable, value=None, /)\n"
9 "Create a new dictionary with keys from iterable and values set to value.");
15 dict_fromkeys_impl(PyTypeObject *type, PyObject *iterable, PyObject *value);
22 PyObject *value = Py_None;
31 value = args[1];
33 return_value = dict_fromkeys_impl(type, iterable, value);
52 "Return the value for key if key is in the dictionary, else default.");
86 "Insert key with a value of default if key is not in the dictionary.\n"
88 "Return the value for key if key is in the dictionary, else default.");
123 "D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n"
160 "Remove and return a (key, value) pair as a 2-tuple.\n"