Skip to content

Commit 1b214bb

Browse files
committed
minor fix
1 parent 932ec76 commit 1b214bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/bytearrayobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2847,7 +2847,7 @@ bytearrayiter_next(PyObject *self)
28472847
if (val == -1) {
28482848
FT_ATOMIC_STORE_SSIZE_RELAXED(it->it_index, -1);
28492849
#ifndef Py_GIL_DISABLED
2850-
it->seq = NULL;
2850+
it->it_seq = NULL;
28512851
Py_DECREF(seq);
28522852
#endif
28532853
return NULL;

0 commit comments

Comments
 (0)