summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 05:05:30 +0000
committerBrett Cannon <bcannon@gmail.com>2006-08-25 05:05:30 +0000
commit3f7ac48bf603565fad92cbf565ac97801814e9e1 (patch)
treeb292dab59b5c8c08ff167a4ba3668f25a34dc766 /Python/import.c
parentbbf77970899b83bb0bf554067c49b21877c560d0 (diff)
downloadcpython-3f7ac48bf603565fad92cbf565ac97801814e9e1.tar.gz
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index a05078e2b7..d80611effb 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -65,9 +65,10 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
Python 2.5c1: 62121 (fix wrong lnotab with for loops and
storing constants that should have been removed)
Python 3000: 3000
+ 3010 (removed UNARY_CONVERT)
.
*/
-#define MAGIC (3000 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (3010 | ((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