summaryrefslogtreecommitdiffstats
path: root/Parser/parsetok.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:54:07 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:54:07 (GMT)
commit4ded4b52c4121ef35801c766480961e1966f91a4 (patch)
treed69468d4bece812b6849faddfb3500eb554e2dcf /Parser/parsetok.c
parent93468eac728bee757446770f2b26de9cf7edcab6 (diff)
downloadcpython-4ded4b52c4121ef35801c766480961e1966f91a4.zip
cpython-4ded4b52c4121ef35801c766480961e1966f91a4.tar.gz
cpython-4ded4b52c4121ef35801c766480961e1966f91a4.tar.bz2
Pass the flags along, rather than ignoring them. Backport candidate
Diffstat (limited to 'Parser/parsetok.c')
-rw-r--r--Parser/parsetok.c2
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 *