From: Victor Stinner Date: Mon, 18 Jan 2021 20:23:35 +0000 (+0100) Subject: bpo-36143: make regen-all now also runs regen-keyword (GH-24245) X-Git-Tag: v3.10.0a5~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a809fa01f59bb00f4029d35d132cd87553554c3;p=thirdparty%2FPython%2Fcpython.git bpo-36143: make regen-all now also runs regen-keyword (GH-24245) --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 7f7f75964194..5605a88ac18e 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 000000000000..5ac3269d9554 --- /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.