[Python-checkins] r66483 - python/trunk/Doc/tutorial/errors.rst

georg.brandl python-checkins at python.org
Tue Sep 16 12:17:45 CEST 2008


Author: georg.brandl
Date: Tue Sep 16 12:17:45 2008
New Revision: 66483

Log:
Fix typo.


Modified:
   python/trunk/Doc/tutorial/errors.rst

Modified: python/trunk/Doc/tutorial/errors.rst
==============================================================================
--- python/trunk/Doc/tutorial/errors.rst	(original)
+++ python/trunk/Doc/tutorial/errors.rst	Tue Sep 16 12:17:45 2008
@@ -374,7 +374,7 @@
 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


More information about the Python-checkins mailing list