From: Guido van Rossum Date: Tue, 10 Dec 1991 13:59:17 +0000 (+0000) Subject: Added _GLOBAL opcodes. X-Git-Tag: v0.9.8~709 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97ff5308fe3e490aac51316cf5575c6119227cc8;p=thirdparty%2FPython%2Fcpython.git Added _GLOBAL opcodes. --- diff --git a/Include/opcode.h b/Include/opcode.h index 62cedb3a211c..3fdcd9d6324c 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 */