[Python-checkins] r73519 - python/trunk/Lib/contextlib.py

nick.coghlan python-checkins at python.org
Tue Jun 23 12:51:02 CEST 2009


Author: nick.coghlan
Date: Tue Jun 23 12:51:02 2009
New Revision: 73519

Log:
Remove markup from docstring

Modified:
   python/trunk/Lib/contextlib.py

Modified: python/trunk/Lib/contextlib.py
==============================================================================
--- python/trunk/Lib/contextlib.py	(original)
+++ python/trunk/Lib/contextlib.py	Tue Jun 23 12:51:02 2009
@@ -90,10 +90,10 @@
     """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):


More information about the Python-checkins mailing list