Home
last modified time | relevance | path

Searched refs:PySet_New (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dsetobject.h83 PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
/external/python/cpython2/Objects/
Dsetobject.c2268 PySet_New(PyObject *iterable) in PySet_New() function
2424 assertRaises(PySet_New(Py_None) == NULL, PyExc_TypeError); in test_c_api()
2428 dup = PySet_New(ob); in test_c_api()
2446 dup2 = PySet_New(dup); in test_c_api()
2471 dup2 = PySet_New(NULL); in test_c_api()
2503 f = PySet_New(NULL); in test_c_api()
Ddictobject.c2996 PyObject *result = PySet_New(self); in dictviews_sub()
3015 PyObject *result = PySet_New(self); in dictviews_and()
3033 PyObject *result = PySet_New(self); in dictviews_or()
3051 PyObject *result = PySet_New(self); in dictviews_xor()
/external/python/cpython2/Doc/c-api/
Dset.rst86 .. c:function:: PyObject* PySet_New(PyObject *iterable)
/external/python/cpython2/PC/os2emx/
Dpython27.def506 "PySet_New"
/external/python/cpython2/Doc/data/
Drefcounts.dat1220 PySet_New:PyObject*::+1:
1221 PySet_New:PyObject*:iterable:0:
/external/python/cpython2/Python/
Dmarshal.c964 v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL); in r_object()
Dceval.c2481 x = PySet_New(NULL); in PyEval_EvalFrameEx()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2853 PyObject *dummy_obj = PySet_New(NULL); in CheckAndGetInteger()
/external/python/cpython2/Modules/
D_ssl.c3725 retval = PySet_New(NULL); in parseKeyUsage()
/external/python/cpython2/Doc/whatsnew/
D2.5.rst2158 * The built-in set types now have an official C API. Call :c:func:`PySet_New`