gh-128563: Move labels in ceval.c to bytecodes.c (GH-129112)

This commit is contained in:
Ken Jin 2025-01-27 18:30:20 +08:00 committed by GitHub
parent 7d275611f6
commit 87fb8b198c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 435 additions and 145 deletions

View file

@ -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"