diff options
author | Guido van Rossum <guido@python.org> | 1990-11-18 17:38:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-11-18 17:38:15 (GMT) |
commit | f1270274e262bc080a2c3d2dd500988d6d80159a (patch) | |
tree | a5bf8d1a99abe5ecb6ff29d5c7f2214a8146d859 /Include/opcode.h | |
parent | cc398d1cbbdbd627b8ebf8c82e9260ae724a1df5 (diff) | |
download | cpython-f1270274e262bc080a2c3d2dd500988d6d80159a.zip cpython-f1270274e262bc080a2c3d2dd500988d6d80159a.tar.gz cpython-f1270274e262bc080a2c3d2dd500988d6d80159a.tar.bz2 |
Added opcodes for classes.
Diffstat (limited to 'Include/opcode.h')
-rw-r--r-- | Include/opcode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index 43ce54e..a4fe6b2 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -37,12 +37,14 @@ #define BREAK_LOOP 80 #define RAISE_EXCEPTION 81 +#define LOAD_LOCALS 82 #define RETURN_VALUE 83 #define REQUIRE_ARGS 84 #define REFUSE_ARGS 85 #define BUILD_FUNCTION 86 #define POP_BLOCK 87 #define END_FINALLY 88 +#define BUILD_CLASS 89 #define HAVE_ARGUMENT 90 /* Opcodes from here have an argument: */ |