diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-02-28 11:50:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-28 11:50:52 +0000 |
commit | 4c87537efb5fd28b4e4ee9631076ed5953720156 (patch) | |
tree | 8c8bf4b1c849bc47dc28561d0653c95b33e357db /Python/bytecodes.c | |
parent | 85b1fc1fc5a2e49d521382eaf5e7793175d00371 (diff) | |
download | cpython-git-4c87537efb5fd28b4e4ee9631076ed5953720156.tar.gz |
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in Python/) (#102193)
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 7e9b36f697..63dbecad3b 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -17,7 +17,7 @@ #include "pycore_object.h" // _PyObject_GC_TRACK() #include "pycore_moduleobject.h" // PyModuleObject #include "pycore_opcode.h" // EXTRA_CASES -#include "pycore_pyerrors.h" // _PyErr_Fetch() +#include "pycore_pyerrors.h" // _PyErr_GetRaisedException() #include "pycore_pymem.h" // _PyMem_IsPtrFreed() #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_range.h" // _PyRangeIterObject |