diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-07-12 07:28:29 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-07-12 07:28:29 (GMT) |
commit | a1f10901097e1a3788314a6aee49edf3690dd0b4 (patch) | |
tree | 56f7a9b54dcadeaa2db2e2cb5e8fce9025a3c4ba /Python/import.c | |
parent | 7e49c6eee88c72c53969da31db95a526742191ef (diff) | |
download | cpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.zip cpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.tar.gz cpython-a1f10901097e1a3788314a6aee49edf3690dd0b4.tar.bz2 |
Actually change the MAGIC #. Create a new section for 2.5c1 and mention the impact of changing the MAGIC #.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index dfc2544..341f652 100644 --- a/Python/import.c +++ b/Python/import.c @@ -63,7 +63,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); Python 2.5c1: 62101 (fix wrong code: for x, in ...) . */ -#define MAGIC (62092 | ((long)'\r'<<16) | ((long)'\n'<<24)) +#define MAGIC (62101 | ((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 |