Home
last modified time | relevance | path

Searched refs:consts2 (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dcodeobject.c551 PyObject *consts1, *consts2; in code_richcompare() local
589 consts2 = _PyCode_ConstantKey(cp->co_consts); in code_richcompare()
590 if (!consts2) { in code_richcompare()
594 eq = PyObject_RichCompareBool(consts1, consts2, Py_EQ); in code_richcompare()
596 Py_DECREF(consts2); in code_richcompare()
/external/python/cpython3/Objects/
Dcodeobject.c626 PyObject *consts1, *consts2; in code_richcompare() local
657 consts2 = _PyCode_ConstantKey(cp->co_consts); in code_richcompare()
658 if (!consts2) { in code_richcompare()
662 eq = PyObject_RichCompareBool(consts1, consts2, Py_EQ); in code_richcompare()
664 Py_DECREF(consts2); in code_richcompare()