Skip to content

Commit c84e757

Browse files
fix external introspection
1 parent a7806d7 commit c84e757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_remote_debugging_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ _Py_RemoteDebug_GetAsyncioDebugAddress(proc_handle_t* handle)
811811
}
812812
#elif defined(__linux__)
813813
// On Linux, search for asyncio debug in executable or DLL
814-
address = search_linux_map_for_section(handle, "AsyncioDebug", "_asyncio.cpython");
814+
address = search_linux_map_for_section(handle, "AsyncioDebug", "python");
815815
if (address == 0) {
816816
// Error out: 'python' substring covers both executable and DLL
817817
PyObject *exc = PyErr_GetRaisedException();

0 commit comments

Comments
 (0)