Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
diff --git a/Python/import.c b/Python/import.c
index a05078e..d80611e 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -65,9 +65,10 @@
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