diff options
author | Victor Stinner <vstinner@python.org> | 2021-11-26 10:50:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 10:50:34 (GMT) |
commit | 253b7a0a9fef1d72a4cb87b837885576e68e917c (patch) | |
tree | dc5f8a45dcd4830ef1ca6504fb4fb0d4b77f52a5 /Parser/parser.c | |
parent | ee1e2c604c8a66a407116d9c3e589ab0b9580c54 (diff) | |
download | cpython-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 'Parser/parser.c')
-rw-r--r-- | Parser/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/parser.c b/Parser/parser.c index 1cf6e35..b139e55 100644 --- a/Parser/parser.c +++ b/Parser/parser.c @@ -1,4 +1,4 @@ -// @generated by pegen from ./Grammar/python.gram +// @generated by pegen from python.gram #include "pegen.h" #if defined(Py_DEBUG) && defined(Py_BUILD_CORE) |