Home | History | Annotate | Download | only in Python

Lines Matching refs:pyc_magic

87 static long pyc_magic = MAGIC;
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);
2954 buf[0] = (char) ((pyc_magic >> 0) & 0xff);
2955 buf[1] = (char) ((pyc_magic >> 8) & 0xff);
2956 buf[2] = (char) ((pyc_magic >> 16) & 0xff);
2957 buf[3] = (char) ((pyc_magic >> 24) & 0xff);