summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-08-31 00:42:15 (GMT)
committerCollin Winter <collinw@gmail.com>2007-08-31 00:42:15 (GMT)
commit32347fb29bcf3d04d8b1abc0ab178d54b496cfe7 (patch)
treead2d9e114740a5e6dc868da9c28afb7e4e4ea8d8
parent7576583903fba601c91d5359fb6adf400f250457 (diff)
downloadcpython-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).
-rw-r--r--Python/import.c2
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