Home
last modified time | relevance | path

Searched refs:PyFrozenSet_CheckExact (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dsetobject.h69 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) macro
/external/python/cpython2/Objects/
Dsetobject.c1057 if (PyFrozenSet_CheckExact(iterable)) { in frozenset_new()
1156 if (PyFrozenSet_CheckExact(so)) { in frozenset_copy()
2406 assert(!PyFrozenSet_CheckExact(ob)); in test_c_api()
2487 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
2509 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
Dcodeobject.c67 else if (PyFrozenSet_CheckExact(v)) { in intern_string_constants()
499 else if (PyFrozenSet_CheckExact(op)) { in _PyCode_ConstantKey()
/external/python/cpython2/Doc/c-api/
Dset.rst80 .. c:function:: int PyFrozenSet_CheckExact(PyObject *p)