diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-31 00:04:24 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-31 00:04:24 +0000 |
commit | 828f04ac3f0dd3b68b4dbf42a79ebb846d1de568 (patch) | |
tree | 21e25d3d969ce636c32539e4d4b5255dc4c85702 /Grammar | |
parent | Remove curses temp file consistently. (diff) | |
download | cpython-828f04ac3f0dd3b68b4dbf42a79ebb846d1de568.tar.gz cpython-828f04ac3f0dd3b68b4dbf42a79ebb846d1de568.tar.bz2 cpython-828f04ac3f0dd3b68b4dbf42a79ebb846d1de568.zip |
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Diffstat (limited to 'Grammar')
-rw-r--r-- | Grammar/Grammar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar index 17a01483e8c..6111fae79b8 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -49,7 +49,7 @@ break_stmt: 'break' continue_stmt: 'continue' return_stmt: 'return' [testlist] yield_stmt: yield_expr -raise_stmt: 'raise' [test [',' test [',' test]]] +raise_stmt: 'raise' [test ['from' test]] import_stmt: import_name | import_from import_name: 'import' dotted_as_names # note below: the ('.' | '...') is necessary because '...' is tokenized as ELLIPSIS |