diff options
Diffstat (limited to 'Doc/library/contextlib.rst')
-rw-r--r-- | Doc/library/contextlib.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index 4908acf..4bb54c5 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -597,9 +597,10 @@ an explicit ``with`` statement. The specification, background, and examples for the Python :keyword:`with` statement. +.. _single-use-reusable-and-reentrant-cms: -Reusable and reentrant context managers ---------------------------------------- +Single use, reusable and reentrant context managers +--------------------------------------------------- Most context managers are written in a way that means they can only be used effectively in a :keyword:`with` statement once. These single use |