Skip to content

Commit dd6e19a

Browse files
committed
async in the message?
1 parent c46810c commit dd6e19a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_remote_debugging/asyncio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ parse_async_frame_chain(
791791
size_t frame_count = 0;
792792
while ((void*)address_of_current_frame != NULL) {
793793
if (++frame_count > MAX_FRAME_CHAIN_DEPTH) {
794-
PyErr_SetString(PyExc_RuntimeError, "Too many stack frames (possible infinite loop)");
794+
PyErr_SetString(PyExc_RuntimeError, "Too many async stack frames (possible infinite loop)");
795795
set_exception_cause(unwinder, PyExc_RuntimeError, "Async frame chain iteration limit exceeded");
796796
return -1;
797797
}

0 commit comments

Comments
 (0)