diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-23 23:29:58 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-23 23:29:58 (GMT) |
commit | 523136937f39bb4fc855d87db79da07395cb3f9b (patch) | |
tree | 3c9e94b986bea5a93c1e17bb3c67bf6258fd0c2e /Doc/reference | |
parent | 8d2d8894da1219ed033cc31253ea100db9ea1979 (diff) | |
parent | 65e3ecb3e229822d8d01b4ae1d26b300ebd79566 (diff) | |
download | cpython-523136937f39bb4fc855d87db79da07395cb3f9b.zip cpython-523136937f39bb4fc855d87db79da07395cb3f9b.tar.gz cpython-523136937f39bb4fc855d87db79da07395cb3f9b.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/compound_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 94b07f0..5dd17eb 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -234,7 +234,7 @@ for a group of statements: .. productionlist:: try_stmt: try1_stmt | try2_stmt try1_stmt: "try" ":" `suite` - : ("except" [`expression` ["as" `target`]] ":" `suite`)+ + : ("except" [`expression` ["as" `identifier`]] ":" `suite`)+ : ["else" ":" `suite`] : ["finally" ":" `suite`] try2_stmt: "try" ":" `suite` |