diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:54:07 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-08 01:54:07 (GMT) |
commit | 4ded4b52c4121ef35801c766480961e1966f91a4 (patch) | |
tree | d69468d4bece812b6849faddfb3500eb554e2dcf /Parser | |
parent | 93468eac728bee757446770f2b26de9cf7edcab6 (diff) | |
download | cpython-4ded4b52c4121ef35801c766480961e1966f91a4.zip cpython-4ded4b52c4121ef35801c766480961e1966f91a4.tar.gz cpython-4ded4b52c4121ef35801c766480961e1966f91a4.tar.bz2 |
Pass the flags along, rather than ignoring them. Backport candidate
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/parsetok.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/parsetok.c b/Parser/parsetok.c index 0b3e957..1fa9739 100644 --- a/Parser/parsetok.c +++ b/Parser/parsetok.c @@ -29,7 +29,7 @@ PyParser_ParseStringFlags(const char *s, grammar *g, int start, perrdetail *err_ret, int flags) { return PyParser_ParseStringFlagsFilename(s, NULL, - g, start, err_ret, 0); + g, start, err_ret, flags); } node * |