Kaydet (Commit) a6b9ce18 authored tarafından Georg Brandl's avatar Georg Brandl

Fix a bug in the parser's future statement handling that led to "with"

not being recognized as a keyword after, e.g., this statement:
from __future__ import division, with_statement
 (backport from rev. 51993)
üst 1f215789
...@@ -82,6 +82,23 @@ class FutureTest(unittest.TestCase): ...@@ -82,6 +82,23 @@ class FutureTest(unittest.TestCase):
else: else:
self.fail("expected exception didn't occur") self.fail("expected exception didn't occur")
def test_parserhack(self):
# test that the parser.c::future_hack function works as expected
try:
exec "from __future__ import division, with_statement; with = 0"
except SyntaxError:
pass
else:
self.fail("syntax error didn't occur")
try:
exec "from __future__ import (with_statement, division); with = 0"
except SyntaxError:
pass
else:
self.fail("syntax error didn't occur")
def test_main(): def test_main():
test_support.run_unittest(FutureTest) test_support.run_unittest(FutureTest)
......
...@@ -12,6 +12,10 @@ What's New in Python 2.5.1c1? ...@@ -12,6 +12,10 @@ What's New in Python 2.5.1c1?
Core and builtins Core and builtins
----------------- -----------------
- Fix a bug in the parser's future statement handling that led to "with"
not being recognized as a keyword after, e.g., this statement:
from __future__ import division, with_statement
- Allow exception instances to be directly sliced again. - Allow exception instances to be directly sliced again.
......
...@@ -181,7 +181,7 @@ static void ...@@ -181,7 +181,7 @@ static void
future_hack(parser_state *ps) future_hack(parser_state *ps)
{ {
node *n = ps->p_stack.s_top->s_parent; node *n = ps->p_stack.s_top->s_parent;
node *ch; node *ch, *cch;
int i; int i;
/* from __future__ import ..., must have at least 4 children */ /* from __future__ import ..., must have at least 4 children */
...@@ -195,15 +195,17 @@ future_hack(parser_state *ps) ...@@ -195,15 +195,17 @@ future_hack(parser_state *ps)
if (NCH(ch) == 1 && STR(CHILD(ch, 0)) && if (NCH(ch) == 1 && STR(CHILD(ch, 0)) &&
strcmp(STR(CHILD(ch, 0)), "__future__") != 0) strcmp(STR(CHILD(ch, 0)), "__future__") != 0)
return; return;
for (i = 3; i < NCH(n); i += 2) { ch = CHILD(n, 3);
/* XXX: assume we don't have parentheses in import: /* ch can be a star, a parenthesis or import_as_names */
from __future__ import (x, y, z) if (TYPE(ch) == STAR)
*/ return;
ch = CHILD(n, i); if (TYPE(ch) == LPAR)
if (NCH(ch) == 1) ch = CHILD(n, 4);
ch = CHILD(ch, 0);
if (NCH(ch) >= 1 && TYPE(CHILD(ch, 0)) == NAME && for (i = 0; i < NCH(ch); i += 2) {
strcmp(STR(CHILD(ch, 0)), "with_statement") == 0) { cch = CHILD(ch, i);
if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME &&
strcmp(STR(CHILD(cch, 0)), "with_statement") == 0) {
ps->p_flags |= CO_FUTURE_WITH_STATEMENT; ps->p_flags |= CO_FUTURE_WITH_STATEMENT;
break; break;
} }
......
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