Files
typeshed/stdlib/@python2/dircache.pyi
T
2021-01-27 12:00:39 +00:00

9 lines
273 B
Python

from typing import List, MutableSequence, Text, Union
def reset() -> None: ...
def listdir(path: Text) -> List[str]: ...
opendir = listdir
def annotate(head: Text, list: Union[MutableSequence[str], MutableSequence[Text], MutableSequence[Union[str, Text]]]) -> None: ...