Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsetobject.h88 PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key);
/external/python/cpython2/Objects/
Dsetobject.c2300 PySet_Contains(PyObject *anyset, PyObject *key) in PySet_Contains() function
2430 assertRaises(PySet_Contains(ob, dup) == -1, PyExc_TypeError); in test_c_api()
2435 assert(PySet_Contains(ob, elem) == 0); in test_c_api()
2438 assert(PySet_Contains(ob, elem) == 1); in test_c_api()
2481 assertRaises(PySet_Contains(t, elem) == -1, PyExc_SystemError); in test_c_api()
/external/python/cpython2/Doc/c-api/
Dset.rst129 .. c:function:: int PySet_Contains(PyObject *anyset, PyObject *key)
/external/python/cpython2/Doc/data/
Drefcounts.dat1212 PySet_Contains:int:::
1213 PySet_Contains:PyObject*:anyset:0:
1214 PySet_Contains:PyObject*:key:0:
/external/python/cpython2/PC/os2emx/
Dpython27.def510 "PySet_Contains"
/external/python/cpython2/Doc/whatsnew/
D2.5.rst2160 :c:func:`PySet_Discard` to add and remove elements, and :c:func:`PySet_Contains`