summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-16 23:15:07 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-16 23:15:07 (GMT)
commitd41b8dc58cc90c96af5be57b3edbcdc4fa98738c (patch)
tree126076540bdc2e6606a7ee60aa79ba762c1f3916 /Doc
parent9f72d237f856dc98a73815e105b3a6003afadd0a (diff)
downloadcpython-d41b8dc58cc90c96af5be57b3edbcdc4fa98738c.zip
cpython-d41b8dc58cc90c96af5be57b3edbcdc4fa98738c.tar.gz
cpython-d41b8dc58cc90c96af5be57b3edbcdc4fa98738c.tar.bz2
Don't use quotes for non-string code.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/2.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index d56a1ff..28916e8 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -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.