Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dtupleobject.h13 PyAPI_FUNC(int) _PyTuple_Resize(PyObject **, Py_ssize_t);
/third_party/python/Objects/
Dgenericaliasobject.c232 if (_PyTuple_Resize(&parameters, len) < 0) { in _Py_make_parameters()
247 if (_PyTuple_Resize(&parameters, iparam) < 0) { in _Py_make_parameters()
Dunionobject.c225 _PyTuple_Resize(&new_args, added_items); in dedup_and_flatten_args()
Dstructseq.c424 if (_PyTuple_Resize(&keys, k) == -1) { in initialize_structseq_dict()
Dtupleobject.c952 _PyTuple_Resize(PyObject **pv, Py_ssize_t newsize) in _PyTuple_Resize() function
Dabstract.c2106 if (_PyTuple_Resize(&result, n) != 0) { in PySequence_Tuple()
2116 _PyTuple_Resize(&result, j) != 0) in PySequence_Tuple()
/third_party/python/Doc/c-api/
Dtuple.rst100 .. c:function:: int _PyTuple_Resize(PyObject **p, Py_ssize_t newsize)
/third_party/python/Doc/data/
Drefcounts.dat3048 _PyTuple_Resize:int:::
3049 _PyTuple_Resize:PyObject**:p:0:
3050 _PyTuple_Resize:Py_ssize_t:new::
/third_party/python/Modules/
D_tkinter.c3132 return _PyTuple_Resize(&context->tuple, maxsize) >= 0; in _bump()
3205 if (_PyTuple_Resize(&context.tuple, context.size)) in _tkinter__flatten()
/third_party/python/Doc/whatsnew/
D2.2.rst1121 * The :c:func:`_PyTuple_Resize` function has lost an unused parameter, so now it
/third_party/python/Misc/
DHISTORY24814 _PyTuple_Resize(). If this affects you, you were cheating.
25882 - Fix bugs in _PyTuple_Resize() which caused hard-to-interpret garbage