Home
last modified time | relevance | path

Searched refs:PyAnySet_CheckExact (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Include/
Dsetobject.h70 #define PyAnySet_CheckExact(ob) \ macro
/external/python/cpython2/Objects/
Dsetobject.c565 if (numfree < PySet_MAXFREELIST && PyAnySet_CheckExact(so)) in set_dealloc()
1011 assert (so != NULL && PyAnySet_CheckExact(so)); in make_new_set()
1416 if (PyAnySet_CheckExact(other)) { in set_isdisjoint()
2405 assert(PyAnySet_CheckExact(ob)); in test_c_api()
Ddictobject.c1409 if (PyAnySet_CheckExact(seq)) { in dict_fromkeys()
/external/python/cpython2/Doc/c-api/
Dset.rst74 .. c:function:: int PyAnySet_CheckExact(PyObject *p)
/external/python/cpython2/Python/
Dmarshal.c397 else if (PyAnySet_CheckExact(v)) { in w_object()