]> granicus.if.org Git - python/commitdiff
#9760: clarify what context expression is.
authorGeorg Brandl <georg@python.org>
Fri, 3 Sep 2010 22:40:02 +0000 (22:40 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 3 Sep 2010 22:40:02 +0000 (22:40 +0000)
Doc/reference/compound_stmts.rst

index ecd483d25a5aad10e5c29ef3490541f73a521858..4e6086fe060fab5ecbcc29b3b175c5259f6be109 100644 (file)
@@ -350,7 +350,8 @@ usage patterns to be encapsulated for convenient reuse.
 
 The execution of the :keyword:`with` statement with one "item" proceeds as follows:
 
-#. The context expression is evaluated to obtain a context manager.
+#. The context expression (the expression given in the :token:`with_item`) is
+   evaluated to obtain a context manager.
 
 #. The context manager's :meth:`__exit__` is loaded for later use.