[Python-checkins] r70025 - python/trunk/Doc/whatsnew/2.6.rst

georg.brandl python-checkins at python.org
Fri Feb 27 17:52:55 CET 2009


Author: georg.brandl
Date: Fri Feb 27 17:52:55 2009
New Revision: 70025

Log:
#5344: fix punctuation.

Modified:
   python/trunk/Doc/whatsnew/2.6.rst

Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst	(original)
+++ python/trunk/Doc/whatsnew/2.6.rst	Fri Feb 27 17:52:55 2009
@@ -270,7 +270,7 @@
 
 The expression is evaluated, and it should result in an object that supports the
 context management protocol (that is, has :meth:`__enter__` and :meth:`__exit__`
-methods.
+methods).
 
 The object's :meth:`__enter__` is called before *with-block* is executed and
 therefore can run set-up code. It also may return a value that is bound to the


More information about the Python-checkins mailing list