massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / distutils / dep_util.pyi
1 # Stubs for distutils.dep_util\r
2 \r
3 from typing import List, Tuple\r
4 \r
5 def newer(source: str, target: str) -> bool: ...\r
6 def newer_pairwise(sources: List[str],\r
7                    targets: List[str]) -> List[Tuple[str, str]]: ...\r
8 def newer_group(sources: List[str], target: str, missing: str = ...) -> bool: ...\r