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

georg.brandl python-checkins at python.org
Mon Dec 17 00:15:07 CET 2007


Author: georg.brandl
Date: Mon Dec 17 00:15:07 2007
New Revision: 59539

Modified:
   python/trunk/Doc/whatsnew/2.6.rst
Log:
Don't use quotes for non-string code.


Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst	(original)
+++ python/trunk/Doc/whatsnew/2.6.rst	Mon Dec 17 00:15:07 2007
@@ -202,7 +202,7 @@
   methods.
 
 * The context manager's :meth:`__enter__` method is called.  The value returned
-  is assigned to *VAR*.  If no ``'as VAR'`` clause is present, the value is simply
+  is assigned to *VAR*.  If no ``as VAR`` clause is present, the value is simply
   discarded.
 
 * The code in *BLOCK* is executed.


More information about the Python-checkins mailing list