diff options
author | Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> | 2022-04-16 22:57:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 22:57:00 (GMT) |
commit | 37965d2fb434d8343d5c70fb6a462a16ae7882b8 (patch) | |
tree | 40d37002d9414950e4b2d889e281438a121545c2 /Include | |
parent | 8560f4a0f288fec33ba49f85bb872353d631a4dc (diff) | |
download | cpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.zip cpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.tar.gz cpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.tar.bz2 |
gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_global_strings.h | 2 | ||||
-rw-r--r-- | Include/internal/pycore_runtime_init.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/internal/pycore_global_strings.h b/Include/internal/pycore_global_strings.h index 77f96cd..cc94662 100644 --- a/Include/internal/pycore_global_strings.h +++ b/Include/internal/pycore_global_strings.h @@ -137,10 +137,10 @@ struct _Py_global_strings { STRUCT_FOR_ID(__le__) STRUCT_FOR_ID(__len__) STRUCT_FOR_ID(__length_hint__) + STRUCT_FOR_ID(__lltrace__) STRUCT_FOR_ID(__loader__) STRUCT_FOR_ID(__lshift__) STRUCT_FOR_ID(__lt__) - STRUCT_FOR_ID(__ltrace__) STRUCT_FOR_ID(__main__) STRUCT_FOR_ID(__matmul__) STRUCT_FOR_ID(__missing__) diff --git a/Include/internal/pycore_runtime_init.h b/Include/internal/pycore_runtime_init.h index 371f2d2..9a3a9d0 100644 --- a/Include/internal/pycore_runtime_init.h +++ b/Include/internal/pycore_runtime_init.h @@ -760,10 +760,10 @@ extern "C" { INIT_ID(__le__), \ INIT_ID(__len__), \ INIT_ID(__length_hint__), \ + INIT_ID(__lltrace__), \ INIT_ID(__loader__), \ INIT_ID(__lshift__), \ INIT_ID(__lt__), \ - INIT_ID(__ltrace__), \ INIT_ID(__main__), \ INIT_ID(__matmul__), \ INIT_ID(__missing__), \ |