]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Don't use quotes for non-string code.
authorGeorg Brandl <georg@python.org>
Sun, 16 Dec 2007 23:15:07 +0000 (23:15 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 16 Dec 2007 23:15:07 +0000 (23:15 +0000)
Doc/whatsnew/2.6.rst

index d56a1ff3792c105456bc1697185405e498964770..28916e84b7d6e8dcf8852a2a39290d30e515ca76 100644 (file)
@@ -202,7 +202,7 @@ A high-level explanation of the context management protocol is:
   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.