Home
last modified time | relevance | path

Searched refs:PyFrozenSet_Check (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/
Dsetobject.h91 #define PyFrozenSet_Check(ob) \ macro
/third_party/python/Python/
Dast_opt.c120 else if (PyFrozenSet_Check(obj)) { in check_complexity()
150 else if (PyLong_Check(v) && (PyTuple_Check(w) || PyFrozenSet_Check(w))) { in safe_multiply()
174 (PyTuple_Check(v) || PyFrozenSet_Check(v) || in safe_multiply()
Dpylifecycle.c2597 if (stdlib_module_names != NULL && !PyFrozenSet_Check(stdlib_module_names)) { in _Py_DumpExtensionModules()
/third_party/python/Doc/c-api/
Dset.rst58 .. c:function:: int PyFrozenSet_Check(PyObject *p)
/third_party/python/Doc/data/
Drefcounts.dat897 PyFrozenSet_Check:int:::
898 PyFrozenSet_Check:PyObject*:p:0:
/third_party/python/Objects/
Dsetobject.c2294 (!PyFrozenSet_Check(anyset) || Py_REFCNT(anyset) != 1)) { in PySet_Add()
/third_party/python/Lib/test/
Dclinic.test202 if (!PyFrozenSet_Check(args[4])) {