| 65 | |
| 66 | |
| 67 | class _SingleVisitInfo(object): |
| 68 | def __init__(self): |
| 69 | self.count = 0 |
| 70 | self.visited_dirs = set() |
| 71 | self.file_to_mtime = {} |
| 72 | self.last_sleep_time = time.time() |
| 73 | |
| 74 | |
| 75 | class _PathWatcher(object): |
no outgoing calls
no test coverage detected