Home
last modified time | relevance | path

Searched refs:PyCell_Check (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Objects/
Dcellobject.c55 if (!PyCell_Check(op)) { in PyCell_Get()
67 if (!PyCell_Check(op)) { in PyCell_Set()
93 if (!PyCell_Check(a) || !PyCell_Check(b)) { in cell_richcompare()
Dframeobject.c940 assert(PyCell_Check(value)); in map_to_dict()
999 assert(PyCell_Check(values[j])); in dict_to_map()
Dfuncobject.c588 if (!PyCell_Check(o)) { in func_new_impl()
Dtypeobject.c3042 if (!PyCell_Check(cell)) { in type_new_set_classcell()
8876 assert(PyCell_Check(cell)); in super_init_without_args()
8904 if (cell == NULL || !PyCell_Check(cell)) { in super_init_without_args()
/third_party/python/Include/
Dcellobject.h16 #define PyCell_Check(op) Py_IS_TYPE(op, &PyCell_Type) macro
/third_party/python/Doc/c-api/
Dcell.rst28 .. c:function:: int PyCell_Check(ob)
/third_party/python/Doc/data/
Drefcounts.dat201 PyCell_Check:int:::
202 PyCell_Check::ob::
/third_party/python/Python/
Dbltinmodule.c225 if (cls != NULL && PyType_Check(cls) && PyCell_Check(cell)) { in builtin___build_class__()