diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-10 21:51:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-10 21:51:44 (GMT) |
commit | 6246d6dcb01c690fd82e870e5c4affbd2848d22c (patch) | |
tree | cf488e6860b325e9f3f361844397aed9466fd09f /Python/import.c | |
parent | ba117ef7e9b2f7f2fbec62a9fcfe371a68024769 (diff) | |
download | cpython-6246d6dcb01c690fd82e870e5c4affbd2848d22c.zip cpython-6246d6dcb01c690fd82e870e5c4affbd2848d22c.tar.gz cpython-6246d6dcb01c690fd82e870e5c4affbd2848d22c.tar.bz2 |
bump magic number for DELETE_DEREF
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index d79fc52..f5bc03d 100644 --- a/Python/import.c +++ b/Python/import.c @@ -105,12 +105,13 @@ typedef unsigned short mode_t; tag: cpython-32 Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR) tag: cpython-32 + Python 3.2a2 3180 (add DELETE_DEREF) */ /* If you change MAGIC, you must change TAG and you must insert the old value into _PyMagicNumberTags below. */ -#define MAGIC (3170 | ((long)'\r'<<16) | ((long)'\n'<<24)) +#define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24)) #define TAG "cpython-32" #define CACHEDIR "__pycache__" /* Current magic word and string tag as globals. */ |