Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsetobject.h76 #define PySet_Check(ob) \ macro
/external/python/cpython2/Objects/
Dsetobject.c1869 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_contains()
1902 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_remove()
1934 if (!PySet_Check(key) || !PyErr_ExceptionMatches(PyExc_TypeError)) in set_discard()
1999 if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds)) in set_init()
2292 if (!PySet_Check(set)) { in PySet_Clear()
2312 if (!PySet_Check(set)) { in PySet_Discard()
2322 if (!PySet_Check(anyset) && in PySet_Add()
2364 if (!PySet_Check(set)) { in PySet_Pop()
2374 if (!PySet_Check(set)) { in _PySet_Update()
/external/python/cpython2/Doc/c-api/
Dset.rst55 .. c:function:: int PySet_Check(PyObject *p)
/external/python/cpython2/Misc/
DNEWS12130 - Added ``PySet_Check()`` and ``PyFrozenSet_Check()`` to the set API.