Lines Matching defs:value
6 "fromkeys($type, /, iterable, value=None)\n"
9 "Create a new ordered dictionary with keys from iterable and values set to value.");
15 OrderedDict_fromkeys_impl(PyTypeObject *type, PyObject *seq, PyObject *value);
21 static const char * const _keywords[] = {"iterable", "value", NULL};
26 PyObject *value = Py_None;
36 value = args[1];
38 return_value = OrderedDict_fromkeys_impl(type, seq, value);
48 "Insert key with a value of default if key is not in the dictionary.\n"
50 "Return the value for key if key is in the dictionary, else default.");
90 "od.pop(key[,default]) -> v, remove specified key and return the corresponding value.\n"
133 "Remove and return a (key, value) pair from the dictionary.\n"