mirror of https://github.com/python/cpython.git
Fix typo.
This commit is contained in:
parent
c237f8e0ce
commit
c8fd1bc4db
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue