summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
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 /Python/ceval.c
parent8560f4a0f288fec33ba49f85bb872353d631a4dc (diff)
downloadcpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.zip
cpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.tar.gz
cpython-37965d2fb434d8343d5c70fb6a462a16ae7882b8.tar.bz2
gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index d6f11d8..d358a31 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1729,7 +1729,7 @@ resume_frame:
#ifdef LLTRACE
{
- int r = PyDict_Contains(GLOBALS(), &_Py_ID(__ltrace__));
+ int r = PyDict_Contains(GLOBALS(), &_Py_ID(__lltrace__));
if (r < 0) {
goto exit_unwind;
}