| Index: Python/import.c |
| =================================================================== |
| --- Python/import.c (revision 70087) |
| +++ Python/import.c (working copy) |
| @@ -74,9 +74,11 @@ |
| Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND) |
| Python 2.7a0: 62181 (optimize conditional branches: |
| introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) |
| + Python 2.7a0: 62191 (FOR_ITER optimization, |
| + lnotab format allowing negative line increments) |
| . |
| */ |
| -#define MAGIC (62181 | ((long)'\r'<<16) | ((long)'\n'<<24)) |
| +#define MAGIC (62191 | ((long)'\r'<<16) | ((long)'\n'<<24)) |
| /* Magic word as global; note that _PyImport_Init() can change the |
| value of this global to accommodate for alterations of how the |