Skip to content

Commit 25cbc38

Browse files
Fix FT build
1 parent e872f7a commit 25cbc38

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3492,7 +3492,7 @@ dummy_func(
34923492
PyObject *iter_o = PyStackRef_AsPyObjectBorrow(iter);
34933493
assert(Py_TYPE(iter_o) == &PyDictIterItem_Type);
34943494
#ifdef Py_GIL_DISABLED
3495-
assert(_PyObject_IsUniquelyReferenced((PyObject *)r));
3495+
assert(_PyObject_IsUniquelyReferenced((PyObject *)iter_o));
34963496
#endif
34973497
STAT_INC(FOR_ITER, hit);
34983498
if (((_PyDictIterObject *)iter_o)->di_dict == NULL) {

Python/generated_cases.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)