Skip to content

Commit 1ece50a

Browse files
committed
fix
1 parent f7bfb2a commit 1ece50a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/listobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3556,7 +3556,7 @@ listreviter_next(PyObject *self)
35563556

35573557
Py_ssize_t index = LOAD_SSIZE(it->it_index);
35583558
#ifndef Py_GIL_DISABLED
3559-
if (seq == NULL) {
3559+
if (it->it_seq == NULL) {
35603560
#else
35613561
if (index < 0) {
35623562
#endif

0 commit comments

Comments
 (0)