mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-19 15:42:21 +08:00
cb97bb54c0
Closes #579.
5 lines
144 B
Python
5 lines
144 B
Python
from typing import List, Iterator, AnyStr
|
|
|
|
def glob(pathname: AnyStr) -> List[AnyStr]: ...
|
|
def iglob(pathname: AnyStr) -> Iterator[AnyStr]: ...
|