[Python-checkins] cpython (merge 3.4 -> default): Merge with 3.4

terry.reedy python-checkins at python.org
Sun Aug 24 01:30:57 CEST 2014


http://hg.python.org/cpython/rev/2c703211e788
changeset:   92215:2c703211e788
parent:      92212:8dea55fb20e9
parent:      92214:a249f1f879be
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sat Aug 23 19:29:58 2014 -0400
summary:
  Merge with 3.4

files:
  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
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -234,7 +234,7 @@
 .. 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`

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list