From c8fd1bc4dba361a75f2cc557256502ad43d59091 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 16 Sep 2008 10:17:45 +0000 Subject: [PATCH] Fix typo. --- Doc/tutorial/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index e5fb39dad6c9..1740396567c0 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