mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-33387: update documentation for exception handling opcode changes (GH-24334)
* bpo-33387: remove obsolete comment * bpo-33387: update SETUP_WITH opcode documentation
This commit is contained in:
parent
c92cd0f3c8
commit
dea5bf9d15
2 changed files with 1 additions and 3 deletions
|
@ -742,7 +742,7 @@ iterations of the loop.
|
|||
|
||||
This opcode performs several operations before a with block starts. First,
|
||||
it loads :meth:`~object.__exit__` from the context manager and pushes it onto
|
||||
the stack for later use by :opcode:`WITH_CLEANUP_START`. Then,
|
||||
the stack for later use by :opcode:`WITH_EXCEPT_START`. Then,
|
||||
:meth:`~object.__enter__` is called, and a finally block pointing to *delta*
|
||||
is pushed. Finally, the result of calling the ``__enter__()`` method is pushed onto
|
||||
the stack. The next opcode will either ignore it (:opcode:`POP_TOP`), or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue