mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
0023078a0b
commit
8b17d6bd89
9 changed files with 245 additions and 71 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue