Fix typo.

This commit is contained in:
Georg Brandl 2008-09-16 10:17:45 +00:00
parent c237f8e0ce
commit c8fd1bc4db
1 changed files with 1 additions and 1 deletions

View File

@ -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
:exc:`TypeError` raised by dividing two strings is not handled by the
: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
releasing external resources (such as files or network connections), regardless