Commit c8fd1bc4 authored by Georg Brandl's avatar Georg Brandl

Fix typo.

parent c237f8e0
...@@ -374,7 +374,7 @@ the same :keyword:`try` statement works as of Python 2.5):: ...@@ -374,7 +374,7 @@ the same :keyword:`try` statement works as of Python 2.5)::
As you can see, the :keyword:`finally` clause is executed in any event. The As you can see, the :keyword:`finally` clause is executed in any event. The
:exc:`TypeError` raised by dividing two strings is not handled by the :exc:`TypeError` raised by dividing two strings is not handled by the
:keyword:`except` clause and therefore re-raised after the :keyword:`finally` :keyword:`except` clause and therefore re-raised after the :keyword:`finally`
clauses has been executed. clause has been executed.
In real world applications, the :keyword:`finally` clause is useful for In real world applications, the :keyword:`finally` clause is useful for
releasing external resources (such as files or network connections), regardless releasing external resources (such as files or network connections), regardless
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment