diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-01-04 10:37:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 10:37:12 +0000 |
commit | a94461d7189d7f1147ab304a332c8684263dc17e (patch) | |
tree | bda2df4f74cc58205d548dce76337260984962fd /Lib/opcode.py | |
parent | a09062c267a94200ad299f779429fea1b571ee35 (diff) | |
download | cpython-git-a94461d7189d7f1147ab304a332c8684263dc17e.tar.gz |
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
* bpo-46202: remove opcode POP_EXCEPT_AND_RERAISE
* do not assume that an exception group is truthy
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index e654a1088b..9bbff182f0 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -77,8 +77,6 @@ def_op('MATCH_KEYS', 33) def_op('PUSH_EXC_INFO', 35) -def_op('POP_EXCEPT_AND_RERAISE', 37) - def_op('WITH_EXCEPT_START', 49) def_op('GET_AITER', 50) def_op('GET_ANEXT', 51) |