diff --git a/README.md b/README.md index 26e0643..0621d55 100644 --- a/README.md +++ b/README.md @@ -1353,8 +1353,8 @@ finally: ```python except : except as : -except (, , ...): -except (, , ...) as : +except (, ...): +except (, ...) as : ``` * **Also catches subclasses of the exception.** @@ -1363,7 +1363,7 @@ except (, , ...) as : raise raise () raise () -raise (, , ...) +raise (, ...) ``` #### Useful built-in exceptions: diff --git a/index.html b/index.html index 5e42d13..f7274f0 100644 --- a/index.html +++ b/index.html @@ -1261,8 +1261,8 @@ LogicOp = Enum('LogicOp', {Catching Exceptions
except <exception>:
 except <exception> as <name>:
-except (<exception_1>, <exception_2>, ...):
-except (<exception_1>, <exception_2>, ...) as <name>:
+except (<exception>, ...):
+except (<exception>, ...) as <name>:
 
    @@ -1271,7 +1271,7 @@ LogicOp = Enum('LogicOp', {Raising Exceptions
    raise <exception>
     raise <exception>()
     raise <exception>(<el>)
    -raise <exception>(<el_1>, <el_2>, ...)
    +raise <exception>(<el>, ...)
     

    Useful built-in exceptions:

    raise ValueError('Argument is of right type but inappropriate value!')