Skip to content

Commit ed45f73

Browse files
Issue python#27867: Fixed merging error.
1 parent 522a60c commit ed45f73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/sliceobject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length,
4141
#define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \
4242
_PySlice_Unpack((PyObject *)(slice), (start), (stop), (step)) < 0 ? \
4343
((*(slicelen) = 0), -1) : \
44-
((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \
44+
((*(slicelen) = _PySlice_AdjustIndices((length), (start), (stop), *(step))), \
4545
0))
4646
PyAPI_FUNC(int) _PySlice_Unpack(PyObject *slice,
4747
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);

0 commit comments

Comments
 (0)