Don't use quotes for non-string code.

This commit is contained in:
Georg Brandl 2007-12-16 23:15:07 +00:00
parent 9f72d237f8
commit d41b8dc58c
1 changed files with 1 additions and 1 deletions

View 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.