From: Nick Coghlan Date: Tue, 23 Jun 2009 10:51:02 +0000 (+0000) Subject: Remove markup from docstring X-Git-Tag: v2.7a1~914 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a1dbb05a1add85e21205ebbb5003d66eddbd155;p=thirdparty%2FPython%2Fcpython.git Remove markup from docstring --- diff --git a/Lib/contextlib.py b/Lib/contextlib.py index a27c86925017..f05205b01c2f 100644 --- a/Lib/contextlib.py +++ b/Lib/contextlib.py @@ -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):