mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Cruft cleanup: Removed the unused last_is_sticky argument from the internal
_PyTuple_Resize().
This commit is contained in:
parent
6a922372ad
commit
4324aa3572
6 changed files with 15 additions and 10 deletions
|
|
@ -33,7 +33,7 @@ extern DL_IMPORT(int) PyTuple_Size(PyObject *);
|
|||
extern DL_IMPORT(PyObject *) PyTuple_GetItem(PyObject *, int);
|
||||
extern DL_IMPORT(int) PyTuple_SetItem(PyObject *, int, PyObject *);
|
||||
extern DL_IMPORT(PyObject *) PyTuple_GetSlice(PyObject *, int, int);
|
||||
extern DL_IMPORT(int) _PyTuple_Resize(PyObject **, int, int);
|
||||
extern DL_IMPORT(int) _PyTuple_Resize(PyObject **, int);
|
||||
|
||||
/* Macro, trading safety for speed */
|
||||
#define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue