[Python-checkins] python/dist/src/Python import.c,2.246,2.247

mwh@users.sourceforge.net mwh at users.sourceforge.net
Fri Oct 21 13:32:25 CEST 2005


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11048

Modified Files:
	import.c 
Log Message:
the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need to 
bump MAGIC.


Index: import.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/import.c,v
retrieving revision 2.246
retrieving revision 2.247
diff -u -d -r2.246 -r2.247
--- import.c	20 Oct 2005 19:59:25 -0000	2.246
+++ import.c	21 Oct 2005 11:32:20 -0000	2.247
@@ -52,8 +52,10 @@
        Python 2.4a3: 62051
        Python 2.4b1: 62061
        Python 2.5a0: 62071
+       Python 2.5a0: 62081 (ast-branch)
+.
 */
-#define MAGIC (62071 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (62081 | ((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



More information about the Python-checkins mailing list