diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-10-12 00:25:00 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-10-12 00:25:00 (GMT) |
commit | 36d8ef9cc7441790f8840f82454bbc9b214354b2 (patch) | |
tree | 68dc918423f320a8ebc26b6c750f57b58bbe0563 /Doc/library/contextlib.rst | |
parent | ccd8e34508c29f0a87fd41a5b0f1145ae405966e (diff) | |
download | cpython-36d8ef9cc7441790f8840f82454bbc9b214354b2.zip cpython-36d8ef9cc7441790f8840f82454bbc9b214354b2.tar.gz cpython-36d8ef9cc7441790f8840f82454bbc9b214354b2.tar.bz2 |
Issue #21061: correctly note redirect_stdout is reentrant
Diffstat (limited to 'Doc/library/contextlib.rst')
-rw-r--r-- | Doc/library/contextlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index b0688db..6f36864 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -167,7 +167,7 @@ Functions and classes provided: 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 <reusable-cms>`. + This context manager is :ref:`reentrant <reentrant-cms>`. .. versionadded:: 3.4 |