HomeSort by relevance Sort by last modified time
    Searched refs:pyc_magic (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 87 static long pyc_magic = MAGIC; variable
164 /* Fix the pyc_magic so that byte compiled code created
167 pyc_magic = MAGIC + 1;
532 return pyc_magic;
747 if (magic != pyc_magic) {
797 if (magic != pyc_magic) {
896 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 87 static long pyc_magic = MAGIC; variable
192 /* Fix the pyc_magic so that byte compiled code created
195 pyc_magic = MAGIC + 1;
564 return pyc_magic;
779 if (magic != pyc_magic) {
829 if (magic != pyc_magic) {
933 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 87 static long pyc_magic = MAGIC; variable
164 /* Fix the pyc_magic so that byte compiled code created
167 pyc_magic = MAGIC + 1;
532 return pyc_magic;
747 if (magic != pyc_magic) {
797 if (magic != pyc_magic) {
896 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
    [all...]
  /external/python/cpython2/Python/
import.c 87 static long pyc_magic = MAGIC; variable
192 /* Fix the pyc_magic so that byte compiled code created
195 pyc_magic = MAGIC + 1;
586 return pyc_magic;
819 if (magic != pyc_magic) {
869 if (magic != pyc_magic) {
973 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
    [all...]
  /external/python/cpython3/Python/
import.c 593 PyObject *external, *pyc_magic; local
598 pyc_magic = PyObject_GetAttrString(external, "_RAW_MAGIC_NUMBER");
600 if (pyc_magic == NULL)
602 res = PyLong_AsLong(pyc_magic);
603 Py_DECREF(pyc_magic);
    [all...]

Completed in 81 milliseconds