summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorDennis Sweeney <36520290+sweeneyde@users.noreply.github.com>2022-04-16 22:57:00 (GMT)
committerGitHub <noreply@github.com>2022-04-16 22:57:00 (GMT)
commit37965d2fb434d8343d5c70fb6a462a16ae7882b8 (patch)
tree40d37002d9414950e4b2d889e281438a121545c2 /Include
parent8560f4a0f288fec33ba49f85bb872353d631a4dc (diff)
downloadcpython-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.h2
-rw-r--r--Include/internal/pycore_runtime_init.h2
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__), \