mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Expand the PySlice_GetIndicesEx macro. (#1023)
This commit is contained in:
parent
205e00c5cf
commit
b879fe82e7
11 changed files with 47 additions and 45 deletions
|
@ -758,11 +758,11 @@ tuplesubscript(PyTupleObject* self, PyObject* item)
|
|||
PyObject* it;
|
||||
PyObject **src, **dest;
|
||||
|
||||
if (PySlice_GetIndicesEx(item,
|
||||
PyTuple_GET_SIZE(self),
|
||||
&start, &stop, &step, &slicelength) < 0) {
|
||||
if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
slicelength = PySlice_AdjustIndices(PyTuple_GET_SIZE(self), &start,
|
||||
&stop, step);
|
||||
|
||||
if (slicelength <= 0) {
|
||||
return PyTuple_New(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue