Files
typeshed/stdlib/@python2/dircache.pyi
2021-08-14 11:12:30 +02:00

9 lines
255 B
Python

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