in 72556ff86828, I should have updated the magic as well as the comment (#14230)

This commit is contained in:
Benjamin Peterson 2012-03-16 09:39:12 -05:00
parent de394543b4
commit f53d20f2cd
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,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 (3210 | ((long)'\r'<<16) | ((long)'\n'<<24))
#define MAGIC (3220 | ((long)'\r'<<16) | ((long)'\n'<<24))
#define TAG "cpython-" MAJOR MINOR;
#define CACHEDIR "__pycache__"
/* Current magic word and string tag as globals. */