diff options
author | Guido van Rossum <guido@python.org> | 2023-11-29 01:10:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-29 01:10:11 (GMT) |
commit | e723700190ba497d1601cb423ee48d5d222a9d26 (patch) | |
tree | c96007aa349b757967794ddc21a431f73cc6ab31 /Python/bytecodes.c | |
parent | e413daf5f6b983bdb4e1965d76b5313cb93b266e (diff) | |
download | cpython-e723700190ba497d1601cb423ee48d5d222a9d26.zip cpython-e723700190ba497d1601cb423ee48d5d222a9d26.tar.gz cpython-e723700190ba497d1601cb423ee48d5d222a9d26.tar.bz2 |
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/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 a1ca66e..2e5f6c8 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -2357,7 +2357,7 @@ dummy_func( 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(); } |