[issue46202] remove opcode POP_EXCEPT_AND_RERAISE

2022-01-04 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue46202] remove opcode POP_EXCEPT_AND_RERAISE

2022-01-04 Thread Mark Shannon
Mark Shannon added the comment: 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 -- nosy:

[issue46202] remove opcode POP_EXCEPT_AND_RERAISE

2021-12-30 Thread Brandt Bucher
Change by Brandt Bucher : -- nosy: +brandtbucher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46202] remove opcode POP_EXCEPT_AND_RERAISE

2021-12-30 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +28514 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30302 ___ Python tracker ___

[issue46202] remove opcode POP_EXCEPT_AND_RERAISE

2021-12-30 Thread Irit Katriel
New submission from Irit Katriel : 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); -- assignee: iritkatriel components: Interpreter Core messages: 409356 nosy: iritkatriel priority: normal