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.

classification
Title: remove opcode POP_EXCEPT_AND_RERAISE
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: iritkatriel Nosy List: Mark.Shannon, brandtbucher, iritkatriel
Priority: normal Keywords: patch

Created on 2021-12-30 10:16 by iritkatriel, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30302 merged iritkatriel, 2021-12-30 11:53
Messages (2)
msg409356 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-12-30 10:16
Following issue45711 this opcode can be replaced by 

ADDOP(c, ROT_THREE);
ADDOP(c, ROT_THREE);
ADDOP(c, POP_EXCEPT);
ADDOP_I(c, RERAISE, 1);
msg409663 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2022-01-04 10:37
New changeset a94461d7189d7f1147ab304a332c8684263dc17e by Irit Katriel in branch 'main':
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
https://github.com/python/cpython/commit/a94461d7189d7f1147ab304a332c8684263dc17e
History
Date User Action Args
2022-04-11 14:59:54adminsetgithub: 90360
2022-01-04 10:57:14iritkatrielsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-01-04 10:37:15Mark.Shannonsetnosy: + Mark.Shannon
messages: + msg409663
2021-12-30 18:17:59brandtbuchersetnosy: + brandtbucher
2021-12-30 11:53:58iritkatrielsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28514
2021-12-30 10:16:16iritkatrielcreate