MCPcopy Index your code
hub / github.com/python/cpython / _eq_mtime

Function _eq_mtime

Lib/zipimport.py:685–687  ·  view source on GitHub ↗
(t1, t2)

Source from the content-addressed store, hash-verified

683# in the archive is lower than the mtime stored in a .pyc: we
684# must allow a difference of at most one second.
685def _eq_mtime(t1, t2):
686 # dostime only stores even seconds, so be lenient
687 return abs(t1 - t2) <= 1
688
689
690# Given the contents of a .py[co] file, unmarshal the data

Callers 1

_unmarshal_codeFunction · 0.85

Calls 1

absFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…