Files
typeshed/stdlib/3/glob.pyi
2015-09-30 09:59:44 -07:00

9 lines
219 B
Python

# Stubs for glob
# Based on http://docs.python.org/3.2/library/glob.html
from typing import List, Iterator, AnyStr
def glob(pathname: AnyStr) -> List[AnyStr]: ...
def iglob(pathname: AnyStr) -> Iterator[AnyStr]: ...