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
Restore old formatting
  • Loading branch information
vstinner committed Mar 14, 2025
commit ab7af3fe68ace327bff7774959774759307ac7fc
5 changes: 4 additions & 1 deletion Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,10 @@ TaskStepMethWrapper_new(TaskObj *task, PyObject *arg)
/* ----- Task._wakeup implementation */

static PyMethodDef TaskWakeupDef = {
"task_wakeup", task_wakeup, METH_O, NULL
"task_wakeup",
task_wakeup,
METH_O,
NULL
};

/* ----- Task introspection helpers */
Expand Down
Loading