diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2009-06-23 10:51:02 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2009-06-23 10:51:02 (GMT) |
commit | 3a1dbb05a1add85e21205ebbb5003d66eddbd155 (patch) | |
tree | 6f9adb70e0f8cf0db0c09cc610d6018f302ea2ce /Lib/contextlib.py | |
parent | 0d8b4e33e759b34dabb2cfc51087c99077912d7a (diff) | |
download | cpython-3a1dbb05a1add85e21205ebbb5003d66eddbd155.zip cpython-3a1dbb05a1add85e21205ebbb5003d66eddbd155.tar.gz cpython-3a1dbb05a1add85e21205ebbb5003d66eddbd155.tar.bz2 |
Remove markup from docstring
Diffstat (limited to 'Lib/contextlib.py')
-rw-r--r-- | Lib/contextlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/contextlib.py b/Lib/contextlib.py index a27c869..f05205b 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): |