Skip to content

Commit

Permalink
fix dealloc
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaraditya303 committed May 5, 2023
1 parent 130e7b5 commit f9943ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,7 @@ static void
FutureIter_dealloc(futureiterobject *it)
{
PyTypeObject *tp = Py_TYPE(it);
asyncio_state *state = get_asyncio_state_by_def((PyObject *)tp);
asyncio_state *state = get_asyncio_state_by_def((PyObject *)it);
PyObject_GC_UnTrack(it);
tp->tp_clear((PyObject *)it);

Expand Down

0 comments on commit f9943ba

Please sign in to comment.