summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-11-26 10:50:34 (GMT)
committerGitHub <noreply@github.com>2021-11-26 10:50:34 (GMT)
commit253b7a0a9fef1d72a4cb87b837885576e68e917c (patch)
treedc5f8a45dcd4830ef1ca6504fb4fb0d4b77f52a5 /Misc/NEWS.d/next
parentee1e2c604c8a66a407116d9c3e589ab0b9580c54 (diff)
downloadcpython-253b7a0a9fef1d72a4cb87b837885576e68e917c.zip
cpython-253b7a0a9fef1d72a4cb87b837885576e68e917c.tar.gz
cpython-253b7a0a9fef1d72a4cb87b837885576e68e917c.tar.bz2
bpo-45866: pegen strips directory of "generated from" header (GH-29777)
"make regen-all" now produces the same output when run from a directory other than the source tree: when building Python out of the source tree.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Build/2021-11-25-13-53-36.bpo-45866.ZH1W8N.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2021-11-25-13-53-36.bpo-45866.ZH1W8N.rst b/Misc/NEWS.d/next/Build/2021-11-25-13-53-36.bpo-45866.ZH1W8N.rst
new file mode 100644
index 0000000..efa046d
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2021-11-25-13-53-36.bpo-45866.ZH1W8N.rst
@@ -0,0 +1,4 @@
+``make regen-all`` now produces the same output when run from a directory
+other than the source tree: when building Python out of the source tree.
+pegen now strips directory of the "generated by pygen from <FILENAME" header
+Patch by Victor Stinner.