(t1, t2)
| 683 | # in the archive is lower than the mtime stored in a .pyc: we |
| 684 | # must allow a difference of at most one second. |
| 685 | def _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 |
no test coverage detected
searching dependent graphs…