diff options
author | Christian Heimes <christian@cheimes.de> | 2008-03-27 09:02:33 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-03-27 09:02:33 (GMT) |
commit | 81caa790b603735c05193e9a266991dd9cc72bb2 (patch) | |
tree | c5c50e3998f28457d559962692472cdeaf90c048 /Python | |
parent | c0a56ff9089718c042bc17e4c3e78fb32eb12525 (diff) | |
download | cpython-81caa790b603735c05193e9a266991dd9cc72bb2.zip cpython-81caa790b603735c05193e9a266991dd9cc72bb2.tar.gz cpython-81caa790b603735c05193e9a266991dd9cc72bb2.tar.bz2 |
Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index b65ed0e..39b3e62 100644 --- a/Python/import.c +++ b/Python/import.c @@ -80,7 +80,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); /* 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; |