mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
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]: ...
|