Lines Matching defs:pair
886 mt_table, so we're setting the key:value pair
6275 PyObject *pair; /* (module_name, class_name) */
6305 /* Look up the (module_name, class_name) pair. */
6306 pair = PyDict_GetItemWithError(st->inverted_registry, py_code);
6307 if (pair == NULL) {
6316 * confirm that pair is really a 2-tuple of strings.
6318 if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2) {
6322 module_name = PyTuple_GET_ITEM(pair, 0);
6327 class_name = PyTuple_GET_ITEM(pair, 1);