(t1, t2)
| 631 | # in the archive is lower than the mtime stored in a .pyc: we |
| 632 | # must allow a difference of at most one second. |
| 633 | def _eq_mtime(t1, t2): |
| 634 | # dostime only stores even seconds, so be lenient |
| 635 | return abs(t1 - t2) <= 1 |
| 636 | |
| 637 | |
| 638 | # Given the contents of a .py[co] file, unmarshal the data |
no test coverage detected