Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions peps/pep-0765.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ when a ``return``, ``break`` or ``continue`` would transfer
control flow from within a ``finally`` block to a location outside
of it.

This includes the following examples:
These examples may emit a ``SyntaxWarning`` or ``SyntaxError``:

.. code-block::
:class: bad
Expand All @@ -108,7 +108,7 @@ This includes the following examples:
finally:
break # (or continue)

But excludes these:
These examples would not emit the warning or error:

.. code-block::
:class: good
Expand Down
Loading