Home
last modified time | relevance | path

Searched refs:PySequence_Tuple (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Modules/
Dresource.c142 limits = PySequence_Tuple(limits); in py2rlimit()
Ditertoolsmodule.c1924 PyObject *newargs = PySequence_Tuple(args); in starmap_next()
2279 PyObject *pool = PySequence_Tuple(item); in product_new()
2607 pool = PySequence_Tuple(iterable); in itertools_combinations_impl()
2944 pool = PySequence_Tuple(iterable); in itertools_combinations_with_replacement_impl()
3273 pool = PySequence_Tuple(iterable); in itertools_permutations_impl()
Dmathmodule.c2639 p = PySequence_Tuple(p); in math_dist_impl()
2646 q = PySequence_Tuple(q); in math_dist_impl()
D_functoolsmodule.c434 fnargs = PySequence_Tuple(fnargs); in partial_setstate()
D_tkinter.c2309 return PySequence_Tuple(arg); in _tkinter_tkapp_splitlist()
/third_party/python/Include/
Dabstract.h702 PyAPI_FUNC(PyObject *) PySequence_Tuple(PyObject *o);
/third_party/python/Doc/c-api/
Dsequence.rst121 .. c:function:: PyObject* PySequence_Tuple(PyObject *o)
/third_party/python/Misc/NEWS.d/
D3.6.0a4.rst75 Don't rely on wrapping for overflow check in PySequence_Tuple(). Patch by
D3.5.3rc1.rst400 Don't rely on wrapping for overflow check in PySequence_Tuple(). Patch by
/third_party/python/Objects/
Dtupleobject.c754 return PySequence_Tuple(iterable); in tuple_new_impl()
Dexceptions.c206 seq = PySequence_Tuple(val); in BaseException_set_args()
1493 info = PySequence_Tuple(info); in SyntaxError_init()
Dcodeobject.c88 PyObject *tmp = PySequence_Tuple(v); in intern_string_constants()
Dabstract.c2045 PySequence_Tuple(PyObject *v) in PySequence_Tuple() function
Dtypeobject.c2075 new_mro = PySequence_Tuple(mro_result); in mro_invoke()
3124 new_slots = PySequence_Tuple(slots); in type_new_get_slots()
/third_party/python/PC/
Dpython3dll.c510 EXPORT_FUNC(PySequence_Tuple)
/third_party/python/Doc/data/
Dstable_abi.dat547 function,PySequence_Tuple,3.2,
Drefcounts.dat2011 PySequence_Tuple:PyObject*::+1:
2012 PySequence_Tuple:PyObject*:o:0:
/third_party/python/Misc/
Dstable_abi.txt1175 function PySequence_Tuple
DHISTORY214 - Issue #23757: PySequence_Tuple() incorrectly called the concrete list API
24721 list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
29262 - Changes to PySequence_Tuple() and PySequence_List() to use the
/third_party/python/Modules/_ctypes/
D_ctypes.c2379 ob = PySequence_Tuple(ob); /* new reference */ in converters_from_argtypes()
3558 ftuple = PySequence_Tuple(ftuple); in PyCFuncPtr_FromDll()
/third_party/python/Python/
Dceval.c4270 Py_SETREF(callargs, PySequence_Tuple(callargs)); in _PyEval_EvalFrameDefault()