This commit is contained in:
Araq
2014-11-14 02:18:00 +01:00
parent 2b9b09e052
commit 61c1fd6944

View File

@@ -47,8 +47,8 @@ the rest of the procedure - that is not within a ``finally`` clause -
is not executed (if an exception occurs).
Except and finally statements
-----------------------------
Standalone except and finally statements
----------------------------------------
``except`` and ``finally`` can also be used as a stand-alone statements.
Any statements following them in the current block will be considered to be
@@ -76,6 +76,9 @@ statements. Example:
echo "4. Post exception"
# --> 1, 2, 3 is printed, 4 is never reached
Top level standalone ``finally`` or ``except`` statements are not supported
since it's unclear what such a statement should refer to.
Raise statement
---------------