]> granicus.if.org Git - python/commitdiff
Marc-Andre Lemburg:
authorGuido van Rossum <guido@python.org>
Mon, 1 May 2000 20:19:08 +0000 (20:19 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 1 May 2000 20:19:08 +0000 (20:19 +0000)
Changed all references to the MAGIC constant to use a global
pyc_magic instead. This global is initially set to MAGIC, but can be
changed by the _PyImport_Init() function to provide for
special features implemented in the compiler which are settable
using command line switches and affect the way PYC files are
generated.

Currently this change is only done for the -U flag.

Python/import.c

index f33f9a1bb90e8e93c02814bf180a4128d10d3490..a65614c24657a2f181ca1e5f2d7402cf491dccc7 100644 (file)
@@ -86,6 +86,11 @@ extern long PyOS_GetLastModificationTime(); /* In getmtime.c */
 /* New way to come up with the magic number: (YEAR-1995), MONTH, DAY */
 #define MAGIC (50428 | ((long)'\r'<<16) | ((long)'\n'<<24))
 
+/* Magic word as global; note that _PyImport_Init() can change the
+   value of this global to accomodate for alterations of how the
+   compiler works which are enabled by command line switches. */
+static long pyc_magic = MAGIC;
+
 /* See _PyImport_FixupExtension() below */
 static PyObject *extensions = NULL;
 
@@ -135,6 +140,13 @@ _PyImport_Init()
                                filetab->suffix = ".pyo";
                }
        }
+
+       if (Py_UnicodeFlag) {
+               /* Fix the pyc_magic so that byte compiled code created
+                  using the all-Unicode method doesn't interfere with
+                  code created in normal operation mode. */
+               pyc_magic = MAGIC + 1;
+       }
 }
 
 void
@@ -366,7 +378,7 @@ PyImport_Cleanup()
 long
 PyImport_GetMagicNumber()
 {
-       return MAGIC;
+       return pyc_magic;
 }
 
 
@@ -572,7 +584,7 @@ check_compiled_module(pathname, mtime, cpathname)
        if (fp == NULL)
                return NULL;
        magic = PyMarshal_ReadLongFromFile(fp);
-       if (magic != MAGIC) {
+       if (magic != pyc_magic) {
                if (Py_VerboseFlag)
                        PySys_WriteStderr("# %s has bad magic\n", cpathname);
                fclose(fp);
@@ -627,7 +639,7 @@ load_compiled_module(name, cpathname, fp)
        PyObject *m;
 
        magic = PyMarshal_ReadLongFromFile(fp);
-       if (magic != MAGIC) {
+       if (magic != pyc_magic) {
                PyErr_Format(PyExc_ImportError,
                             "Bad magic number in %.200s", cpathname);
                return NULL;
@@ -685,7 +697,7 @@ write_compiled_module(co, cpathname, mtime)
                                "# can't create %s\n", cpathname);
                return;
        }
-       PyMarshal_WriteLongToFile(MAGIC, fp);
+       PyMarshal_WriteLongToFile(pyc_magic, fp);
        /* First write a 0 for mtime */
        PyMarshal_WriteLongToFile(0L, fp);
        PyMarshal_WriteObjectToFile((PyObject *)co, fp);
@@ -1953,10 +1965,10 @@ imp_get_magic(self, args)
 
        if (!PyArg_ParseTuple(args, ":get_magic"))
                return NULL;
-       buf[0] = (char) ((MAGIC >>  0) & 0xff);
-       buf[1] = (char) ((MAGIC >>  8) & 0xff);
-       buf[2] = (char) ((MAGIC >> 16) & 0xff);
-       buf[3] = (char) ((MAGIC >> 24) & 0xff);
+       buf[0] = (char) ((pyc_magic >>  0) & 0xff);
+       buf[1] = (char) ((pyc_magic >>  8) & 0xff);
+       buf[2] = (char) ((pyc_magic >> 16) & 0xff);
+       buf[3] = (char) ((pyc_magic >> 24) & 0xff);
 
        return PyString_FromStringAndSize(buf, 4);
 }