mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
gh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (GH-141391)
This commit is contained in:
parent
35908265b0
commit
909f76dab9
2 changed files with 3 additions and 3 deletions
|
|
@ -119,7 +119,7 @@ typedef struct _Py_AsyncioModuleDebugOffsets {
|
|||
} asyncio_thread_state;
|
||||
} Py_AsyncioModuleDebugOffsets;
|
||||
|
||||
GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets _AsyncioDebug)
|
||||
GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets _Py_AsyncioDebug)
|
||||
= {.asyncio_task_object = {
|
||||
.size = sizeof(TaskObj),
|
||||
.task_name = offsetof(TaskObj, task_name),
|
||||
|
|
@ -4338,7 +4338,7 @@ module_init(asyncio_state *state)
|
|||
goto fail;
|
||||
}
|
||||
|
||||
state->debug_offsets = &_AsyncioDebug;
|
||||
state->debug_offsets = &_Py_AsyncioDebug;
|
||||
|
||||
Py_DECREF(module);
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ Python/pyhash.c - _Py_HashSecret -
|
|||
Python/parking_lot.c - buckets -
|
||||
|
||||
## data needed for introspecting asyncio state from debuggers and profilers
|
||||
Modules/_asynciomodule.c - _AsyncioDebug -
|
||||
Modules/_asynciomodule.c - _Py_AsyncioDebug -
|
||||
|
||||
|
||||
##################################
|
||||
|
|
|
|||
|
Can't render this file because it has a wrong number of fields in line 4.
|
Loading…
Add table
Add a link
Reference in a new issue