mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)
The PEP 649 implementation will require a way to load NotImplementedError from the bytecode. @markshannon suggested implementing this by converting LOAD_ASSERTION_ERROR into a more general mechanism for loading constants. This PR adds this new opcode. I will work on the rest of the implementation of the PEP separately. Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
This commit is contained in:
parent
506b1a3ff6
commit
98e855fcc1
22 changed files with 337 additions and 288 deletions
|
|
@ -863,7 +863,7 @@ PyUnstable_Code_New(int argcount, int kwonlyargcount,
|
|||
|
||||
static const uint8_t assert0[6] = {
|
||||
RESUME, RESUME_AT_FUNC_START,
|
||||
LOAD_ASSERTION_ERROR, 0,
|
||||
LOAD_COMMON_CONSTANT, CONSTANT_ASSERTIONERROR,
|
||||
RAISE_VARARGS, 1
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue