diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-31 00:42:15 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-31 00:42:15 (GMT) |
commit | 32347fb29bcf3d04d8b1abc0ab178d54b496cfe7 (patch) | |
tree | ad2d9e114740a5e6dc868da9c28afb7e4e4ea8d8 /Python/import.c | |
parent | 7576583903fba601c91d5359fb6adf400f250457 (diff) | |
download | cpython-32347fb29bcf3d04d8b1abc0ab178d54b496cfe7.zip cpython-32347fb29bcf3d04d8b1abc0ab178d54b496cfe7.tar.gz cpython-32347fb29bcf3d04d8b1abc0ab178d54b496cfe7.tar.bz2 |
Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment).
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 33cafd0..7283783 100644 --- a/Python/import.c +++ b/Python/import.c @@ -77,7 +77,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); 3070 (PEP 3109 raise changes) . */ -#define MAGIC (3060 | ((long)'\r'<<16) | ((long)'\n'<<24)) +#define MAGIC (3070 | ((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 |