Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsetobject.h84 PyAPI_FUNC(PyObject *) PyFrozenSet_New(PyObject *);
/external/python/cpython2/Objects/
Dsetobject.c2274 PyFrozenSet_New(PyObject *iterable) in PyFrozenSet_New() function
2425 assertRaises(PyFrozenSet_New(Py_None) == NULL, PyExc_TypeError); in test_c_api()
2452 f = PyFrozenSet_New(dup); in test_c_api()
2485 f = PyFrozenSet_New(dup); in test_c_api()
2507 f = PyFrozenSet_New(NULL); in test_c_api()
Dcodeobject.c75 v = PyFrozenSet_New(tmp); in intern_string_constants()
525 set = PyFrozenSet_New(tuple); in _PyCode_ConstantKey()
/external/python/cpython2/Doc/c-api/
Dset.rst95 .. c:function:: PyObject* PyFrozenSet_New(PyObject *iterable)
/external/python/cpython2/Modules/
D_hashopenssl.c805 state.set = PyFrozenSet_New(NULL); in generate_hash_name_list()
/external/python/cpython2/PC/os2emx/
Dpython27.def507 "PyFrozenSet_New"
/external/python/cpython2/Doc/data/
Drefcounts.dat440 PyFrozenSet_New:PyObject*::+1:
441 PyFrozenSet_New:PyObject*:iterable:0:
/external/python/cpython2/Python/
Dmarshal.c964 v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL); in r_object()
/external/python/cpython2/Doc/whatsnew/
D2.5.rst2159 and :c:func:`PyFrozenSet_New` to create a new set, :c:func:`PySet_Add` and