Lines Matching refs:pair
69 Does not hold an active (key, value) pair now and never did. Unused can
73 Holds an active (key, value) pair. Active can transition to Dummy or
78 Previously held an active (key, value) pair, but that was deleted and an
79 active pair has not yet overwritten the slot. Dummy can transition to
2425 /* Do repr() on each key+value pair, and insert ": " between them.
2777 /* Update/merge with this (key, value) pair. */
3444 Remove and return a (key, value) pair as a 2-tuple.
4946 PyObject *pair = PyTuple_Pack(2, key, val2);
4947 if (pair == NULL) {
4950 if (PySet_Add(result_set, pair) < 0) {
4951 Py_DECREF(pair);
4954 Py_DECREF(pair);