diff -r 92efd86d1a38 Doc/reference/compound_stmts.rst --- a/Doc/reference/compound_stmts.rst Sun Mar 23 19:05:28 2014 -0400 +++ b/Doc/reference/compound_stmts.rst Mon Mar 24 01:19:09 2014 -0400 @@ -348,7 +348,9 @@ 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`). diff -r 92efd86d1a38 Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst Sun Mar 23 19:05:28 2014 -0400 +++ b/Doc/reference/simple_stmts.rst Mon Mar 24 01:19:09 2014 -0400 @@ -656,6 +656,8 @@ 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