This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2018年02月25日 13:43 by serhiy.storchaka, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 5883 | closed | serhiy.storchaka, 2018年02月25日 13:48 | |
| PR 5112 | closed | serhiy.storchaka, 2018年03月13日 20:22 | |
| Messages (11) | |||
|---|---|---|---|
| msg312813 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2018年02月25日 13:43 | |
There are some issues with "with"-related opcodes. All other opcodes has constant stack effect for particular control flow. For example FOR_ITER always has the stack effect 1 if not jump (pushes the next item) and -1 if jumps (pops the iterator). The only exceptions are WITH_CLEANUP_START which pushes 1 or 2 values depending on TOS, and WITH_CLEANUP_FINISH which pops 2 or 3 values depending on values pushed by preceding WITH_CLEANUP_START. This breaks consistency and may make debugging harder. WITH_CLEANUP_START duplicates a one of values on the stack without good reasons. Even the comment in the initial commit exposed uncertainty in this. The proposed PR simplifies WITH_CLEANUP_START and WITH_CLEANUP_FINISH. They will be now executed only when the exception is raised. In normal case they will be replaced with calling a function `__exit__(None, None, None)`. LOAD_CONST 0 ((None, None, None)) CALL_FUNCTION_EX 0 POP_TOP WITH_CLEANUP_FINISH will be merged with the following END_FINALLY. This PR is inspired by PR 5112 by Mark Shannon, but Mark goes further. In addition to simplifying the implementation and the mental model, the PR adds a tiny bit of performance gain. $ ./python -m perf timeit -s 'class CM:' -s ' def __enter__(s): pass' -s ' def __exit__(*args): pass' -s 'cm = CM()' -- 'with cm: pass' Unpatched: Mean +- std dev: 227 ns +- 6 ns Patched: Mean +- std dev: 205 ns +- 10 ns |
|||
| msg312878 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2018年02月26日 06:18 | |
This will not solve issue29988 but will open a way for solving it at least for synchronous "with" (swap POP_BLOCK and the following LOAD_CONST and disable interrupting after POP_BLOCK). |
|||
| msg312880 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2018年02月26日 08:03 | |
Updated PR seems fixes issue29988 for synchronous "with". |
|||
| msg314013 - (view) | Author: Mark Shannon (Mark.Shannon) * (Python committer) | Date: 2018年03月17日 21:05 | |
We have two competing PRs for this issue. Again. For comparison, using the same micro-benchmark, PR 5112 has these timings: Master branch: Mean +- std dev: 252 ns +- 4 ns PR 5112: Mean +- std dev: 216 ns +- 4 ns |
|||
| msg314039 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2018年03月18日 13:15 | |
Thank you for your PR Mark. The main difference between PR 5883 and PR 5112 is that in PR 5883 the pair of old WITH_CLEANUP_FINISH and END_FINALLY are replaced with a single new WITH_CLEANUP_FINISH, and in PR 5112 it is replaced with a sequence of 7 opcodes including a new opcode RERAISE. POP_JUMP_IF_TRUE L RERAISE L: POP_TOP POP_TOP POP_TOP POP_EXCEPT POP_TOP This doesn't affect a performance in normal case because this code is executed only when an exception has been raised (an in that case the performance is less important). And seems this doesn't introduce new race conditions. The number of opcodes is the same in both PRs. The implementation of RERAISE in ceval.c in PR 5112 is a tiny bit simpler than the implementation of WITH_CLEANUP_FINISH in PR 5883. But the generated bytecode and the compiler are a tiny bit simpler in PR 5883. If RERAISE be used for other purposes besides implementing a "with" statement, it would be a great advantage. For now both approaches look to me not having significant advantages or disadvantages against the other one. Does anybody have preferences? |
|||
| msg314058 - (view) | Author: Mark Shannon (Mark.Shannon) * (Python committer) | Date: 2018年03月18日 21:07 | |
I intend to reuse RERAISE to implement the exceptional case for a finally block. Something like: SETUP_FINALLY final body finalbody JUMP exit final: finalbody RERAISE exit: |
|||
| msg314059 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2018年03月18日 21:16 | |
There are problems with the f_lineno setter when duplicate a finally body. The duplication works for "with" only because the cleanup code for "with" doesn't correspond any line number. |
|||
| msg314060 - (view) | Author: Mark Shannon (Mark.Shannon) * (Python committer) | Date: 2018年03月18日 21:37 | |
It is fiddly to get the frame-setlineno code right for duplicated catch blocks, but it is far from impossible. |
|||
| msg321287 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2018年07月08日 19:42 | |
Additional related PR: https://github.com/python/cpython/pull/6641 tied to issue33387 which proposes replacing the existing with and try related bytecodes with two simpler ones: RERAISE and WITH_EXCEPT_FINISH. |
|||
| msg358315 - (view) | Author: Cheryl Sabella (cheryl.sabella) * (Python committer) | Date: 2019年12月13日 02:42 | |
Should this be closed now that PR6641 has been merged? |
|||
| msg358322 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2019年12月13日 06:52 | |
Sure. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:58 | admin | set | github: 77130 |
| 2019年12月13日 06:52:43 | serhiy.storchaka | set | status: open -> closed resolution: out of date messages: + msg358322 stage: patch review -> resolved |
| 2019年12月13日 02:42:05 | cheryl.sabella | set | nosy:
+ cheryl.sabella messages: + msg358315 |
| 2019年08月21日 22:13:32 | gregory.p.smith | set | versions: + Python 3.9, - Python 3.8 |
| 2019年04月11日 10:43:16 | methane | set | nosy:
+ methane |
| 2018年07月08日 19:42:39 | gregory.p.smith | set | nosy:
+ gregory.p.smith messages: + msg321287 |
| 2018年03月18日 21:37:32 | Mark.Shannon | set | messages: + msg314060 |
| 2018年03月18日 21:16:51 | serhiy.storchaka | set | messages: + msg314059 |
| 2018年03月18日 21:07:29 | Mark.Shannon | set | messages: + msg314058 |
| 2018年03月18日 13:15:49 | serhiy.storchaka | set | messages: + msg314039 |
| 2018年03月17日 21:05:45 | Mark.Shannon | set | messages: + msg314013 |
| 2018年03月13日 20:27:13 | serhiy.storchaka | link | issue33072 superseder |
| 2018年03月13日 20:22:55 | serhiy.storchaka | set | pull_requests: + pull_request5873 |
| 2018年02月26日 08:03:10 | serhiy.storchaka | set | messages: + msg312880 |
| 2018年02月26日 06:18:42 | serhiy.storchaka | set | nosy:
+ ncoghlan messages: + msg312878 |
| 2018年02月25日 13:48:21 | serhiy.storchaka | set | keywords:
+ patch stage: patch review pull_requests: + pull_request5658 |
| 2018年02月25日 13:43:14 | serhiy.storchaka | create | |