Lines Matching defs:keys
28 keys are more likely to be present. In contrast, sets are primarily
228 keys again. When entries have been deleted, the new table may
509 PyObject *result=NULL, *keys, *listrepr, *tmp;
524 keys = PySequence_List((PyObject *)so);
525 if (keys == NULL)
528 /* repr(keys)[1:-1] */
529 listrepr = PyObject_Repr(keys);
530 Py_DECREF(keys);
574 * incrementally resizing as we insert new keys. Expect
575 * that there will be no (or few) overlapping keys.
895 * incrementally resizing as we insert new keys. Expect
896 * that there will be no (or few) overlapping keys.
1950 PyObject *keys=NULL, *args=NULL, *result=NULL, *state=NULL;
1952 keys = PySequence_List((PyObject *)so);
1953 if (keys == NULL)
1955 args = PyTuple_Pack(1, keys);
1964 Py_XDECREF(keys);