massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / glob.pyi
1 from typing import List, Iterator, Union, AnyStr\r
2 \r
3 def glob(pathname: AnyStr) -> List[AnyStr]: ...\r
4 def iglob(pathname: AnyStr) -> Iterator[AnyStr]: ...\r
5 def glob1(dirname: Union[str, unicode], pattern: AnyStr) -> List[AnyStr]: ...\r
6 def glob0(dirname: Union[str, unicode], basename: AnyStr) -> List[AnyStr]: ...\r