mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 14:00:12 +08:00
ff63953188
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
8 lines
350 B
Python
8 lines
350 B
Python
from typing import AnyStr, Iterator, List
|
|
|
|
def glob(pathname: AnyStr) -> List[AnyStr]: ...
|
|
def iglob(pathname: AnyStr) -> Iterator[AnyStr]: ...
|
|
def glob1(dirname: str | unicode, pattern: AnyStr) -> List[AnyStr]: ...
|
|
def glob0(dirname: str | unicode, basename: AnyStr) -> List[AnyStr]: ...
|
|
def has_magic(s: str | unicode) -> bool: ... # undocumented
|