From 8b17d6bd89cd79820c76bd88bc064e44fc03a1bd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 30 Mar 1993 13:18:41 +0000 Subject: Changes to speed up local variables enormously, by avoiding dictionary lookup (opcode.h, ceval.[ch], compile.c, frameobject.[ch], pythonrun.c, import.c). The .pyc MAGIC number is changed again. Added get_menu_text to flmodule. --- Python/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/import.c') diff --git a/Python/import.c b/Python/import.c index 4b7ee1372d..2171f4b323 100644 --- a/Python/import.c +++ b/Python/import.c @@ -54,7 +54,7 @@ extern char *argv0; /* Magic word to reject pre-0.9.9 .pyc files */ -#define MAGIC 0x99BE2AL +#define MAGIC 0x99BE3AL static object *modules; -- cgit v1.2.1