diff options
author | Guido van Rossum <guido@python.org> | 1991-12-10 13:59:17 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-10 13:59:17 +0000 |
commit | 75036dac0df70ef024c5094810b87dd15332e754 (patch) | |
tree | 83462e1d85cee034f2d49729ee431d88983a500d /Include/opcode.h | |
parent | cadb4ec0794b86efd61f1310f026dc0d256c89e9 (diff) | |
download | cpython-75036dac0df70ef024c5094810b87dd15332e754.tar.gz |
Added _GLOBAL opcodes.
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 62cedb3a21..3fdcd9d632 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -88,6 +88,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* unused: 94 */ #define STORE_ATTR 95 /* Index in name list */ #define DELETE_ATTR 96 /* "" */ +#define STORE_GLOBAL 97 /* "" */ +#define DELETE_GLOBAL 98 /* "" */ #define LOAD_CONST 100 /* Index in const list */ #define LOAD_NAME 101 /* Index in name list */ |