commit | da029fb293d7b389ad54bd843966a266fb4de615 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <mdickinson@enthought.com> | Mon May 07 17:24:04 2012 +0100 |
committer | Mark Dickinson <mdickinson@enthought.com> | Mon May 07 17:24:04 2012 +0100 |
tree | 531ac06a99c2e235901d068b02b45f1c90b8529b | |
parent | 11c1dee183a39626a904f3f9e09b47dab3fd8117 [diff] [blame] |
Issue #14741: Fix missing support for ellipsis in parser module.
diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py index 50dc8d1..cae09df 100644 --- a/Lib/test/test_parser.py +++ b/Lib/test/test_parser.py
@@ -106,6 +106,8 @@ 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