Commit 3a1dbb05 authored by Nick Coghlan's avatar Nick Coghlan

Remove markup from docstring

parent 0d8b4e33
...@@ -90,10 +90,10 @@ def nested(*managers): ...@@ -90,10 +90,10 @@ def nested(*managers):
"""Combine multiple context managers into a single nested context manager. """Combine multiple context managers into a single nested context manager.
This function has been deprecated in favour of the multiple manager form 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 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: used with a variable number of context managers as follows:
with nested(*managers): with nested(*managers):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment