Skip to content

Commit 378fe09

Browse files
committed
fix typo
1 parent f72c393 commit 378fe09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_asynciomodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ future_schedule_callbacks(asyncio_state *state, FutureObj *fut)
448448
i++) {
449449
PyObject *cb_tup = PyList_GET_ITEM(fut->fut_callbacks, i);
450450
if (!PyTuple_CheckExact(cb_tup) || PyTuple_GET_SIZE(cb_tup) != 2) {
451-
PyErr_SetString(PyExc_RuntimeError, "corrupted callback tuple?");
451+
PyErr_SetString(PyExc_RuntimeError, "corrupted callback tuple");
452452
return -1;
453453
}
454454
PyObject *cb = PyTuple_GET_ITEM(cb_tup, 0);

0 commit comments

Comments
 (0)