mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
[3.10] bpo-28516: document contextlib.ExitStack.__enter__ behavior (GH-31636) (GH-32171)
The enter_context is updated with following information: 'The :meth:`__enter__` method
returns the ExitStack instance, and performs no additional operations.'
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 86384cf83f
)
Co-authored-by: vidhya <96202776+Vidhyavinu@users.noreply.github.com>
This commit is contained in:
parent
0dfabf9b4a
commit
604d003ab4
1 changed files with 3 additions and 0 deletions
|
@ -485,6 +485,9 @@ Functions and classes provided:
|
|||
# the with statement, even if attempts to open files later
|
||||
# in the list raise an exception
|
||||
|
||||
The :meth:`__enter__` method returns the :class:`ExitStack` instance, and
|
||||
performs no additional operations.
|
||||
|
||||
Each instance maintains a stack of registered callbacks that are called in
|
||||
reverse order when the instance is closed (either explicitly or implicitly
|
||||
at the end of a :keyword:`with` statement). Note that callbacks are *not*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue