9ffd346efdbe8c45d14378cbba10564ea706a4d1
[dotfiles/.git] / dircache.pyi
1 # Source: https://hg.python.org/cpython/file/2.7/Lib/dircache.py\r
2 \r
3 from typing import List, MutableSequence, Text, Union\r
4 \r
5 def reset() -> None: ...\r
6 def listdir(path: Text) -> List[str]: ...\r
7 \r
8 opendir = listdir\r
9 \r
10 def annotate(head: Text, list: Union[MutableSequence[str], MutableSequence[Text], MutableSequence[Union[str, Text]]]) -> None: ...\r