summaryrefslogtreecommitdiff
path: root/Grammar
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-18 19:01:53 +0000
committerGeorg Brandl <georg@python.org>2007-03-18 19:01:53 +0000
commitdde002899db8d04ac25d630fcc3a27e8bbf282ea (patch)
tree336d26b7a0e0da705cc729688de862bea896b251 /Grammar
parent428f0641ec34902b0cce2cfdca833c79e6fdab7c (diff)
downloadcpython-git-dde002899db8d04ac25d630fcc3a27e8bbf282ea.tar.gz
Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis.
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/Grammar2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar
index 0e459ca71f..e4cd3e07fe 100644
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -107,7 +107,7 @@ power: atom trailer* ['**' factor]
atom: ('(' [yield_expr|testlist_gexp] ')' |
'[' [listmaker] ']' |
'{' [dictsetmaker] '}' |
- NAME | NUMBER | STRING+ | '.' '.' '.')
+ NAME | NUMBER | STRING+ | '...')
listmaker: test ( list_for | (',' test)* [','] )
testlist_gexp: test ( gen_for | (',' test)* [','] )
lambdef: 'lambda' [varargslist] ':' test