Skip to content
Merged
Changes from all commits
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
6 changes: 0 additions & 6 deletions Modules/_remote_debugging_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -2213,12 +2213,6 @@ static int
return -1;
}

PyObject *frames = PyList_New(0);
if (frames == NULL) {
set_exception_cause(unwinder, PyExc_MemoryError, "Failed to create frames list");
return -1;
}

while ((void*)address_of_current_frame != NULL) {
PyObject* frame_info = NULL;
uintptr_t address_of_code_object;
Expand Down
Loading