]> granicus.if.org Git - python/commitdiff
Remove markup from docstring
authorNick Coghlan <ncoghlan@gmail.com>
Tue, 23 Jun 2009 10:51:02 +0000 (10:51 +0000)
committerNick Coghlan <ncoghlan@gmail.com>
Tue, 23 Jun 2009 10:51:02 +0000 (10:51 +0000)
Lib/contextlib.py

index a27c86925017f26b8408ec8c6cd60f4e3a9a50bd..f05205b01c2f7c0d63b6b6026e888ffbcd176ef4 100644 (file)
@@ -90,10 +90,10 @@ def nested(*managers):
     """Combine multiple context managers into a single nested context manager.
 
    This function has been deprecated in favour of the multiple manager form
-   of the :keyword:`with` statement.
+   of the with statement.
 
    The one advantage of this function over the multiple manager form of the
-   :keyword:`with` statement is that argument unpacking allows it to be
+   with statement is that argument unpacking allows it to be
    used with a variable number of context managers as follows:
 
       with nested(*managers):