Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Modules/_asynciomodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions Tools/build/smelly.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ def is_local_symbol_type(symtype):
if symtype.islower() and symtype not in "uvw":
return True

# Ignore the initialized data section (d and D) and the BSS data
# section. For example, ignore "__bss_start (type: B)"
# and "_edata (type: D)".
if symtype in "bBdD":
return True

return False


Expand Down
Loading