Home | History | Annotate | Download | only in Python

Lines Matching defs:mtime

737 check_compiled_module(char *pathname, time_t mtime, char *cpathname)

754 if (pyc_mtime != mtime) {
756 PySys_WriteStderr("# %s has bad mtime\n", cpathname);
882 time_t mtime = srcstat->st_mtime;
897 /* First write a 0 for mtime */
908 /* Now write the true mtime */
910 assert(mtime < LONG_MAX);
911 PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION);