]> granicus.if.org Git - python/commitdiff
Closes 21048: Index 'as' in import and with statements.
authorTerry Jan Reedy <tjreedy@udel.edu>
Tue, 29 Apr 2014 04:58:56 +0000 (00:58 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Tue, 29 Apr 2014 04:58:56 +0000 (00:58 -0400)
Doc/reference/compound_stmts.rst
Doc/reference/simple_stmts.rst

index e35aa9f740583bcd6e6a232dbf6a697c1c3d4784..4e037113fb7a4b8842706988fbfdbb92c961f0cc 100644 (file)
@@ -348,7 +348,9 @@ may be found in section :ref:`raise`.
 The :keyword:`with` statement
 =============================
 
-.. index:: statement: with
+.. index::
+    statement: with
+    single: as; with statement
 
 The :keyword:`with` statement is used to wrap the execution of a block with
 methods defined by a context manager (see section :ref:`context-managers`).
index 40bbc391d276d312a968bfbcfe48fd9f9f074ab0..b710cd45860e36a87c6b769a4d7be06e67c7d27e 100644 (file)
@@ -656,6 +656,8 @@ initializing the module, which includes execution of the module's code.
 If the requested module is retrieved successfully, it will be made
 available in the local namespace in one of three ways:
 
+.. index:: single: as; import statement
+
 * If the module name is followed by :keyword:`as`, then the name
   following :keyword:`as` is bound directly to the imported module.
 * If no other name is specified, and the module being imported is a top