Home
last modified time | relevance | path

Searched refs:PySet_Check (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/
Dsetobject.h103 #define PySet_Check(ob) \ macro
/third_party/python/Objects/
Dsetobject.c1819 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_contains()
1852 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_remove()
1884 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_discard()
2263 if (!PySet_Check(set)) { in PySet_Clear()
2283 if (!PySet_Check(set)) { in PySet_Discard()
2293 if (!PySet_Check(anyset) && in PySet_Add()
2320 if (!PySet_Check(set)) { in PySet_Pop()
2330 if (!PySet_Check(set)) { in _PySet_Update()
/third_party/python/Doc/c-api/
Dset.rst53 .. c:function:: int PySet_Check(PyObject *p)
/third_party/python/Doc/data/
Drefcounts.dat2018 PySet_Check:int:::
2019 PySet_Check:PyObject*:p:0:
/third_party/python/Lib/test/
Dclinic.test197 if (!PySet_Check(args[3])) {
/third_party/python/Modules/
D_pickle.c6598 if (PySet_Check(set)) { in load_additems()