]> granicus.if.org Git - python/commitdiff
Revert r58075 (incorrect docs patch).
authorCollin Winter <collinw@gmail.com>
Thu, 27 Sep 2007 21:28:21 +0000 (21:28 +0000)
committerCollin Winter <collinw@gmail.com>
Thu, 27 Sep 2007 21:28:21 +0000 (21:28 +0000)
Doc/tutorial/errors.rst

index 162457edec1233430b0462e094476d58b3e4e972..fa2d42220fb578c5634e4fdb61f46f40d96a95c7 100644 (file)
@@ -115,9 +115,9 @@ A :keyword:`try` statement may have more than one except clause, to specify
 handlers for different exceptions.  At most one handler will be executed.
 Handlers only handle exceptions that occur in the corresponding try clause, not
 in other handlers of the same :keyword:`try` statement.  An except clause may
-name multiple exceptions as a tuple, for example::
+name multiple exceptions as a parenthesized tuple, for example::
 
-   ... except RuntimeError, TypeError, NameError:
+   ... except (RuntimeError, TypeError, NameError):
    ...     pass
 
 The last except clause may omit the exception name(s), to serve as a wildcard.