diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-26 01:13:12 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-26 01:13:12 +0100 |
commit | c366117820eb34e14f4bf2b1f82a47b7a9cbc04a (patch) | |
tree | a9a703511caf473574a2d312c5143fa2c8486beb /Python/import.c | |
parent | f0effe637988e936b5a6ece2da789b67723d675c (diff) | |
parent | 0fdfceb782424dcddca848357736f24ef40c91be (diff) | |
download | cpython-git-c366117820eb34e14f4bf2b1f82a47b7a9cbc04a.tar.gz |
Merge heads
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 6c6d1f697a..7199230098 100644 --- a/Python/import.c +++ b/Python/import.c @@ -103,6 +103,7 @@ typedef unsigned short mode_t; tag: cpython-32 Python 3.2a2 3180 (add DELETE_DEREF) Python 3.3a0 3190 __class__ super closure changed + Python 3.3a0 3200 (__qualname__ added) */ /* MAGIC must change whenever the bytecode emitted by the compiler may no @@ -115,7 +116,7 @@ typedef unsigned short mode_t; #define STRIFY(name) QUOTE(name) #define MAJOR STRIFY(PY_MAJOR_VERSION) #define MINOR STRIFY(PY_MINOR_VERSION) -#define MAGIC (3190 | ((long)'\r'<<16) | ((long)'\n'<<24)) +#define MAGIC (3200 | ((long)'\r'<<16) | ((long)'\n'<<24)) #define TAG "cpython-" MAJOR MINOR; #define CACHEDIR "__pycache__" /* Current magic word and string tag as globals. */ |