@@ -3634,7 +3634,7 @@ dummy_func(
36343634
36353635 op (_GUARD_ITER_VIRTUAL , (iterable -- iterable )) {
36363636 PyTypeObject * tp = Py_TYPE (PyStackRef_AsPyObjectBorrow (iterable ));
3637- EXIT_IF (tp -> tp_iteritem == NULL );
3637+ EXIT_IF (tp -> _tp_iteritem == NULL );
36383638 STAT_INC (GET_ITER , hit );
36393639 }
36403640
@@ -3712,13 +3712,13 @@ dummy_func(
37123712
37133713 op (_GUARD_NOS_ITER_VIRTUAL , (iter , null_or_index -- iter , null_or_index )) {
37143714 PyObject * iter_o = PyStackRef_AsPyObjectBorrow (iter );
3715- EXIT_IF (Py_TYPE (iter_o )-> tp_iteritem == NULL );
3715+ EXIT_IF (Py_TYPE (iter_o )-> _tp_iteritem == NULL );
37163716 }
37173717
37183718 replaced op (_FOR_ITER_VIRTUAL , (iter , null_or_index -- iter , null_or_index , next )) {
37193719 PyObject * iter_o = PyStackRef_AsPyObjectBorrow (iter );
37203720 Py_ssize_t index = PyStackRef_UntagInt (null_or_index );
3721- _PyObjectIndexPair next_index = Py_TYPE (iter_o )-> tp_iteritem (iter_o , index );
3721+ _PyObjectIndexPair next_index = Py_TYPE (iter_o )-> _tp_iteritem (iter_o , index );
37223722 PyObject * next_o = next_index .object ;
37233723 index = next_index .index ;
37243724 if (next_o == NULL ) {
@@ -3741,7 +3741,7 @@ dummy_func(
37413741 op (_FOR_ITER_VIRTUAL_TIER_TWO , (iter , null_or_index -- iter , null_or_index , next )) {
37423742 PyObject * iter_o = PyStackRef_AsPyObjectBorrow (iter );
37433743 Py_ssize_t index = PyStackRef_UntagInt (null_or_index );
3744- _PyObjectIndexPair next_index = Py_TYPE (iter_o )-> tp_iteritem (iter_o , index );
3744+ _PyObjectIndexPair next_index = Py_TYPE (iter_o )-> _tp_iteritem (iter_o , index );
37453745 PyObject * next_o = next_index .object ;
37463746 index = next_index .index ;
37473747 if (next_o == NULL ) {
0 commit comments