Kaydet (Commit) 81caa790 authored tarafından Christian Heimes's avatar Christian Heimes

Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots

üst c0a56ff9
...@@ -80,7 +80,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *); ...@@ -80,7 +80,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
/* Magic word as global; note that _PyImport_Init() can change the /* Magic word as global; note that _PyImport_Init() can change the
value of this global to accommodate for alterations of how the value of this global to accommodate for alterations of how the
compiler works which are enabled by command line switches. */ compiler works which are enabled by command line switches. */
static long pyc_magic = MAGIC; static long pyc_magic = MAGIC+2;
/* See _PyImport_FixupExtension() below */ /* See _PyImport_FixupExtension() below */
static PyObject *extensions = NULL; static PyObject *extensions = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment