Skip to content

Commit 909f76d

Browse files
authored
pythongh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (pythonGH-141391)
1 parent 3590826 commit 909f76d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Modules/_asynciomodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ typedef struct _Py_AsyncioModuleDebugOffsets {
119119
} asyncio_thread_state;
120120
} Py_AsyncioModuleDebugOffsets;
121121

122-
GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets _AsyncioDebug)
122+
GENERATE_DEBUG_SECTION(AsyncioDebug, Py_AsyncioModuleDebugOffsets _Py_AsyncioDebug)
123123
= {.asyncio_task_object = {
124124
.size = sizeof(TaskObj),
125125
.task_name = offsetof(TaskObj, task_name),
@@ -4338,7 +4338,7 @@ module_init(asyncio_state *state)
43384338
goto fail;
43394339
}
43404340

4341-
state->debug_offsets = &_AsyncioDebug;
4341+
state->debug_offsets = &_Py_AsyncioDebug;
43424342

43434343
Py_DECREF(module);
43444344
return 0;

Tools/c-analyzer/cpython/ignored.tsv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Python/pyhash.c - _Py_HashSecret -
5656
Python/parking_lot.c - buckets -
5757

5858
## data needed for introspecting asyncio state from debuggers and profilers
59-
Modules/_asynciomodule.c - _AsyncioDebug -
59+
Modules/_asynciomodule.c - _Py_AsyncioDebug -
6060

6161

6262
##################################

0 commit comments

Comments
 (0)