Commit 342212c5 authored by Christian Heimes's avatar Christian Heimes

Surround p_flags access with #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD

parent 3c60833e
......@@ -213,7 +213,9 @@ parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret,
else
n = NULL;
#ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD
*flags = ps->p_flags;
#endif
PyParser_Delete(ps);
if (n == NULL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment