Expand the PySlice_GetIndicesEx macro. (#1023)

This commit is contained in:
Serhiy Storchaka 2017-04-08 09:53:51 +03:00 committed by GitHub
parent 205e00c5cf
commit b879fe82e7
11 changed files with 47 additions and 45 deletions

View file

@ -13996,10 +13996,11 @@ unicode_subscript(PyObject* self, PyObject* item)
int src_kind, dest_kind;
Py_UCS4 ch, max_char, kind_limit;
if (PySlice_GetIndicesEx(item, PyUnicode_GET_LENGTH(self),
&start, &stop, &step, &slicelength) < 0) {
if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
return NULL;
}
slicelength = PySlice_AdjustIndices(PyUnicode_GET_LENGTH(self),
&start, &stop, step);
if (slicelength <= 0) {
_Py_RETURN_UNICODE_EMPTY();