]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-36143: make regen-all now also runs regen-keyword (GH-24245)
authorVictor Stinner <vstinner@python.org>
Mon, 18 Jan 2021 20:23:35 +0000 (21:23 +0100)
committerGitHub <noreply@github.com>
Mon, 18 Jan 2021 20:23:35 +0000 (21:23 +0100)
Makefile.pre.in
Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst [new file with mode: 0644]

index 7f7f75964194162a70e61dc2006d54c533199c8a..5605a88ac18eb4c3c14f51b7d6bf4e38f1a8122f 100644 (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
 
 ############################################################################
diff --git a/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst b/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst
new file mode 100644 (file)
index 0000000..5ac3269
--- /dev/null
@@ -0,0 +1 @@
+``make regen-all`` now also runs ``regen-keyword``. Patch by Victor Stinner.