Skip to content

Commit efe74b6

Browse files
authored
bpo-38321: Fix _asynciomodule.c compiler warning (GH-16493)
bpo-38248, bpo-38321: Fix warning: modules\_asynciomodule.c(2667): warning C4102: 'set_exception': unreferenced label The related goto has been removed by commit edad4d8.
1 parent dec3971 commit efe74b6

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Modules/_asynciomodule.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2657,7 +2657,6 @@ task_step_impl(TaskObj *task, PyObject *exc)
26572657
/* Some other exception; pop it and call Task.set_exception() */
26582658
PyErr_Fetch(&et, &ev, &tb);
26592659

2660-
set_exception:
26612660
assert(et);
26622661
if (!ev || !PyObject_TypeCheck(ev, (PyTypeObject *) et)) {
26632662
PyErr_NormalizeException(&et, &ev, &tb);

0 commit comments

Comments
 (0)