bpo-36143: make regen-all now also runs regen-keyword (GH-24245)

This commit is contained in:
Victor Stinner 2021-01-18 21:23:35 +01:00 committed by GitHub
parent 250035d134
commit 6a809fa01f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -755,7 +755,7 @@ regen-limited-abi: all
# Regenerate all generated files
regen-all: regen-opcode regen-opcode-targets regen-typeslots \
regen-token regen-ast regen-importlib clinic \
regen-token regen-ast regen-keyword regen-importlib clinic \
regen-pegen-metaparser regen-pegen
############################################################################

View file

@ -0,0 +1 @@
``make regen-all`` now also runs ``regen-keyword``. Patch by Victor Stinner.