mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
gh-128563: Move labels in ceval.c to bytecodes.c (GH-129112)
This commit is contained in:
parent
7d275611f6
commit
87fb8b198c
9 changed files with 435 additions and 145 deletions
|
@ -213,6 +213,9 @@ kwds.append(OP)
|
|||
# A macro in the DSL
|
||||
MACRO = "MACRO"
|
||||
kwds.append(MACRO)
|
||||
# A label in the DSL
|
||||
LABEL = "LABEL"
|
||||
kwds.append(LABEL)
|
||||
keywords = {name.lower(): name for name in kwds}
|
||||
|
||||
ANNOTATION = "ANNOTATION"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue