diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -162,17 +162,17 @@ Functions and classes provided: with redirect_stdout(sys.stderr): help(pow) Note that the global side effect on :data:`sys.stdout` means that this context manager is not suitable for use in library code and most threaded applications. It also has no effect on the output of subprocesses. However, it is still a useful approach for many utility scripts. - This context manager is :ref:`reusable but not reentrant `. + This context manager is :ref:`reentrant `. .. versionadded:: 3.4 .. class:: ContextDecorator() A base class that enables a context manager to also be used as a decorator.