(path: str)
| 134 | |
| 135 | |
| 136 | def should_skip_path(path: str) -> bool: |
| 137 | if stats.is_special_module(path): |
| 138 | return True |
| 139 | if path.startswith(".."): |
| 140 | return True |
| 141 | if "stubs" in path.split("/") or "stubs" in path.split(os.sep): |
| 142 | return True |
| 143 | return False |
| 144 | |
| 145 | |
| 146 | def iterate_python_lines(path: str) -> Iterator[tuple[int, str]]: |
no test coverage detected
searching dependent graphs…