diff options
author | Guido van Rossum <guido@python.org> | 2023-11-29 10:10:11 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 17:10:11 -0800 |
commit | e723700190ba497d1601cb423ee48d5d222a9d26 (patch) | |
tree | c96007aa349b757967794ddc21a431f73cc6ab31 /Python/generated_cases.c.h | |
parent | e413daf5f6b983bdb4e1965d76b5313cb93b266e (diff) | |
download | cpython-e723700190ba497d1601cb423ee48d5d222a9d26.tar.gz cpython-e723700190ba497d1601cb423ee48d5d222a9d26.zip |
Rename ...Uop... to ...UOp... (uppercase O) for consistency (#112327)
* Rename _PyUopExecute to _PyUOpExecute (uppercase O) for consistency
* Also rename _PyUopName and _PyUOp_Replacements, and some output strings
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index dedd793111b..0ac99e759de 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -2331,7 +2331,7 @@ JUMPBY(1-original_oparg); frame->instr_ptr = next_instr; Py_INCREF(executor); - if (executor->execute == _PyUopExecute) { + if (executor->execute == _PyUOpExecute) { current_executor = (_PyUOpExecutorObject *)executor; GOTO_TIER_TWO(); } |