Lines Matching refs:mtime
1314 /* Lenient date/time comparison function. The precision of the mtime
1315 in the archive is lower than the mtime stored in a .pyc: we
1333 unmarshal_code(PyObject *pathname, PyObject *data, time_t mtime)
1362 } else if ((mtime != 0 && !eq_mtime(get_uint32(buf + 8), mtime))) {
1364 PySys_FormatStderr("# %R has bad mtime\n",
1474 time_t mtime;
1494 mtime = parse_dostime(time, date);
1496 mtime = 0;
1497 return mtime;
1504 time_t mtime, PyObject *toc_entry)
1514 code = unmarshal_code(modpath, data, mtime);
1558 time_t mtime = 0;
1563 mtime = get_mtime_of_source(self, fullpath);
1564 if (mtime == (time_t)-1 && PyErr_Occurred()) {
1572 isbytecode, mtime,
1575 /* bad magic number or non-matching mtime