[Python-checkins] bpo-36143: make regen-all now also runs regen-keyword (GH-24245)

vstinner webhook-mailer at python.org
Mon Jan 18 15:23:48 EST 2021


https://github.com/python/cpython/commit/6a809fa01f59bb00f4029d35d132cd87553554c3
commit: 6a809fa01f59bb00f4029d35d132cd87553554c3
branch: master
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2021-01-18T21:23:35+01:00
summary:

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

files:
A Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 7f7f759641941..5605a88ac18eb 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -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
index 0000000000000..5ac3269d95540
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2021-01-18-20-52-06.bpo-36143.kgnIYo.rst
@@ -0,0 +1 @@
+``make regen-all`` now also runs ``regen-keyword``. Patch by Victor Stinner.



More information about the Python-checkins mailing list