Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframAlph committed Dec 25, 2024
1 parent ff6b7ee commit 3aa46e7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3624,7 +3624,6 @@ _asyncio_all_tasks_impl(PyObject *module, PyObject *loop)
}
Py_DECREF(eager_iter);

/* Check if loop ended because of exception in PyIter_Next */
if (PyErr_Occurred()) {
Py_DECREF(tasks);
Py_DECREF(loop);
Expand Down Expand Up @@ -3671,7 +3670,6 @@ _asyncio_all_tasks_impl(PyObject *module, PyObject *loop)
Py_DECREF(scheduled_iter);
Py_DECREF(loop);

/* Check if loop ended because of exception in PyIter_Next */
if (PyErr_Occurred()) {
Py_DECREF(tasks);
return NULL;
Expand Down
1 change: 0 additions & 1 deletion Objects/frameobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ framelocalsproxy_merge(PyObject* self, PyObject* other)

Py_DECREF(iter);

/* Check if loop ended because of exception in PyIter_Next */
if (PyErr_Occurred()) {
return -1;
}
Expand Down
1 change: 0 additions & 1 deletion Objects/namespaceobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ namespace_repr(PyObject *ns)
goto error;
}

/* Check if loop ended because of exception in PyIter_Next */
if (PyErr_Occurred()) {
goto error;
}
Expand Down

0 comments on commit 3aa46e7

Please sign in to comment.