Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove redundant return
  • Loading branch information
itamaro committed Apr 25, 2023
commit 7cde29001edba17e59f51a4f24e336a20ac7210c
1 change: 0 additions & 1 deletion Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,6 @@ _asyncio_Task_get_name_impl(TaskObj *self)
PyObject *name = PyUnicode_FromFormat(
"Task-%" PRIu64, ++state->task_name_counter);
Comment thread
itamaro marked this conversation as resolved.
Outdated
Py_XSETREF(self->task_name, name);
return Py_NewRef(self->task_name);
}
return Py_NewRef(self->task_name);
}
Expand Down