diff options
author | Ken Jin <kenjin@python.org> | 2025-02-18 15:48:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-18 15:48:49 (GMT) |
commit | 46ac85e4d9fcffe1a8f921989414a89648b5501a (patch) | |
tree | 93db42fea4eae69337ab731d02d1fb49e21373e9 /Python/bytecodes.c | |
parent | dab456dcefd886bde44eb204dc6f1b2f14de0e9d (diff) | |
download | cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.zip cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.tar.gz cpython-46ac85e4d9fcffe1a8f921989414a89648b5501a.tar.bz2 |
gh-129989: Change Py_TAIL_CALL_INTERP ifndef to ! (#130269)
Change Py_TAIL_CALL_INTERP ifndef to !
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 3f8f711..1c5fdf8 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -1358,7 +1358,7 @@ dummy_func( tier1 inst(CLEANUP_THROW, (sub_iter, last_sent_val, exc_value_st -- none, value)) { PyObject *exc_value = PyStackRef_AsPyObjectBorrow(exc_value_st); - #ifndef Py_TAIL_CALL_INTERP + #if !Py_TAIL_CALL_INTERP assert(throwflag); #endif assert(exc_value && PyExceptionInstance_Check(exc_value)); |