Issue #14741: Fix missing support for ellipsis in parser module.

This commit is contained in:
Mark Dickinson 2012-05-07 17:24:04 +01:00
parent 11c1dee183
commit da029fb293
3 changed files with 5 additions and 5 deletions

View file

@ -106,6 +106,8 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
self.check_expr("lambda x, *y, **z: 0")
self.check_expr("(x for x in range(10))")
self.check_expr("foo(x for x in range(10))")
self.check_expr("...")
self.check_expr("a[...]")
def test_simple_expression(self):
# expr_stmt