We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7bdb4f commit a28f2c5Copy full SHA for a28f2c5
Lib/test/test_sys.py
@@ -1621,9 +1621,9 @@ def func():
1621
return sys._getframe()
1622
x = func()
1623
if support.Py_GIL_DISABLED:
1624
- INTERPRETER_FRAME = f'10PhcP'
+ INTERPRETER_FRAME = '10PhcP'
1625
else:
1626
- INTERPRETER_FRAME = f'9PhcP'
+ INTERPRETER_FRAME = '9PhcP'
1627
check(x, size('3PiccPP' + INTERPRETER_FRAME + 'P'))
1628
# function
1629
def func(): pass
Python/ceval_macros.h
@@ -89,7 +89,7 @@
89
#if LLTRACE
90
#define LLTRACE_RESUME_FRAME() \
91
do { \
92
- lltrace = maybe_lltrace_resume_frame(frame, GLOBALS()); \
+ int lltrace = maybe_lltrace_resume_frame(frame, GLOBALS()); \
93
frame->lltrace = lltrace;
94
if (lltrace < 0) { \
95
goto exit_unwind; \
0 commit comments