(
cls,
filter, # type: PathFilter
error_handler, # type: None
paths=None, # type: Optional[Iterable[str]]
)
| 1318 | @overload |
| 1319 | @classmethod |
| 1320 | def _identify_interpreters( |
| 1321 | cls, |
| 1322 | filter, # type: PathFilter |
| 1323 | error_handler, # type: None |
| 1324 | paths=None, # type: Optional[Iterable[str]] |
| 1325 | ): |
| 1326 | # type: (...) -> Iterator[PythonInterpreter] |
| 1327 | pass |
| 1328 | |
| 1329 | @overload |
| 1330 | @classmethod |
no test coverage detected