File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ PySeqIter_New(PyObject *seq)
2323 return NULL ;
2424 }
2525
26- it = 0 ; // _Py_FREELIST_POP(seqiterobject, shared_iters);
26+ it = _Py_FREELIST_POP (seqiterobject , shared_iters );
2727 if (it == NULL ) {
2828 it = PyObject_GC_New (seqiterobject , & PySeqIter_Type );
2929 if (it == NULL )
Original file line number Diff line number Diff line change @@ -3914,7 +3914,7 @@ list_iter(PyObject *seq)
39143914 PyErr_BadInternalCall ();
39153915 return NULL ;
39163916 }
3917- _PyListIterObject * it = 0 ; // _Py_FREELIST_POP(_PyListIterObject, shared_iters);
3917+ _PyListIterObject * it = _Py_FREELIST_POP (_PyListIterObject , shared_iters );
39183918 if (it == NULL ) {
39193919 it = PyObject_GC_New (_PyListIterObject , & PyListIter_Type );
39203920 if (it == NULL ) {
Original file line number Diff line number Diff line change @@ -1123,7 +1123,7 @@ tuple_iter(PyObject *seq)
11231123 PyErr_BadInternalCall ();
11241124 return NULL ;
11251125 }
1126- it = 0 ; // _Py_FREELIST_POP(_PyTupleIterObject, shared_iters);
1126+ it = _Py_FREELIST_POP (_PyTupleIterObject , shared_iters );
11271127
11281128 if (it == NULL ) {
11291129 it = PyObject_GC_New (_PyTupleIterObject , & PyTupleIter_Type );
You can’t perform that action at this time.
0 commit comments