e3d49fde02ef3e99d41ecfb756d85e88b9cf88f5
[dotfiles/.git] / 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