[Python-checkins] r61973 - python/trunk/Python/import.c

christian.heimes python-checkins at python.org
Thu Mar 27 10:02:33 CET 2008


Author: christian.heimes
Date: Thu Mar 27 10:02:33 2008
New Revision: 61973

Modified:
   python/trunk/Python/import.c
Log:
Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots

Modified: python/trunk/Python/import.c
==============================================================================
--- python/trunk/Python/import.c	(original)
+++ python/trunk/Python/import.c	Thu Mar 27 10:02:33 2008
@@ -80,7 +80,7 @@
 /* Magic word as global; note that _PyImport_Init() can change the
    value of this global to accommodate for alterations of how the
    compiler works which are enabled by command line switches. */
-static long pyc_magic = MAGIC;
+static long pyc_magic = MAGIC+2;
 
 /* See _PyImport_FixupExtension() below */
 static PyObject *extensions = NULL;


More information about the Python-checkins mailing list