Skip to content

Commit 2676957

Browse files
fix comment
1 parent 5030cc6 commit 2676957

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/_asynciomodule.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1657,8 +1657,6 @@ FutureIter_dealloc(futureiterobject *it)
16571657
static PySendResult
16581658
FutureIter_am_send_lock_held(futureiterobject *it, PyObject **result)
16591659
{
1660-
/* arg is unused, see the comment on FutureIter_send for clarification */
1661-
16621660
PyObject *res;
16631661
FutureObj *fut = it->future;
16641662
_Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(fut);
@@ -1690,6 +1688,7 @@ FutureIter_am_send(futureiterobject *it,
16901688
PyObject *Py_UNUSED(arg),
16911689
PyObject **result)
16921690
{
1691+
/* arg is unused, see the comment on FutureIter_send for clarification */
16931692
PySendResult res;
16941693
Py_BEGIN_CRITICAL_SECTION(it->future);
16951694
res = FutureIter_am_send_lock_held(it, result);

0 commit comments

Comments
 (0)