mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
9 lines
219 B
Python
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]: ...
|