Home
last modified time | relevance | path

Searched refs:PySet_Size (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/
Dsetobject.h88 PyAPI_FUNC(Py_ssize_t) PySet_Size(PyObject *anyset);
/third_party/python/Objects/
Dsetobject.c2251 PySet_Size(PyObject *anyset) in PySet_Size() function
2380 assert(PySet_Size(ob) == 3); in test_c_api()
2408 assert(PySet_Size(dup2) == 0); in test_c_api()
2433 assert(PySet_Size(dup2) == 3); in test_c_api()
2435 assert(PySet_Size(dup2) == 3); in test_c_api()
2440 assertRaises(PySet_Size(t) == -1, PyExc_SystemError); in test_c_api()
2446 assert(PySet_Size(f) == 3); in test_c_api()
/third_party/python/Doc/c-api/
Dset.rst108 .. c:function:: Py_ssize_t PySet_Size(PyObject *anyset)
119 Macro form of :c:func:`PySet_Size` without error checking.
/third_party/python/Modules/
D_abc.c831 Py_ssize_t registry_size = PySet_Size(impl->_abc_registry); in subclasscheck_check_registry()
/third_party/python/PC/
Dpython3dll.c517 EXPORT_FUNC(PySet_Size)
/third_party/python/Doc/data/
Dstable_abi.dat555 function,PySet_Size,3.2,
Drefcounts.dat2041 PySet_Size:Py_ssize_t:::
2042 PySet_Size:PyObject*:anyset:0:
/third_party/python/Misc/
Dstable_abi.txt1191 function PySet_Size
/third_party/python/Doc/whatsnew/
D2.5.rst2162 and :c:func:`PySet_Size` to examine the set's state. (Contributed by Raymond