diff options
author | Georg Brandl <georg@python.org> | 2008-09-16 10:17:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-09-16 10:17:45 (GMT) |
commit | c8fd1bc4dba361a75f2cc557256502ad43d59091 (patch) | |
tree | a15695e6ae3bcc75c354f68d59d04f0fddcf6d7d /Doc/tutorial/errors.rst | |
parent | c237f8e0cea1a79a653183f2990d51989b5ffaf5 (diff) | |
download | cpython-c8fd1bc4dba361a75f2cc557256502ad43d59091.zip cpython-c8fd1bc4dba361a75f2cc557256502ad43d59091.tar.gz cpython-c8fd1bc4dba361a75f2cc557256502ad43d59091.tar.bz2 |
Fix typo.
Diffstat (limited to 'Doc/tutorial/errors.rst')
-rw-r--r-- | Doc/tutorial/errors.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index e5fb39d..1740396 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -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 |