summaryrefslogtreecommitdiffstats
path: root/Doc/reference/compound_stmts.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-10-16 21:38:48 (GMT)
committerGeorg Brandl <georg@python.org>2008-10-16 21:38:48 (GMT)
commit865cd640bb3d24210a1c78ed14a7a1819ca74b68 (patch)
tree744debea2915190a804da1827dc2853505a73c4f /Doc/reference/compound_stmts.rst
parent19cc944e450414e24f774d17a68110bee40eedfd (diff)
downloadcpython-865cd640bb3d24210a1c78ed14a7a1819ca74b68.zip
cpython-865cd640bb3d24210a1c78ed14a7a1819ca74b68.tar.gz
cpython-865cd640bb3d24210a1c78ed14a7a1819ca74b68.tar.bz2
#4083: add "as" to except handler grammar as per PEP 3110.
Diffstat (limited to 'Doc/reference/compound_stmts.rst')
-rw-r--r--Doc/reference/compound_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 0794755..408298d 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -221,7 +221,7 @@ for a group of statements:
.. productionlist::
try_stmt: try1_stmt | try2_stmt
try1_stmt: "try" ":" `suite`
- : ("except" [`expression` ["," `target`]] ":" `suite`)+
+ : ("except" [`expression` [("as" | ",") `target`]] ":" `suite`)+
: ["else" ":" `suite`]
: ["finally" ":" `suite`]
try2_stmt: "try" ":" `suite`