mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
7 lines
257 B
Python
7 lines
257 B
Python
from typing import AnyStr, Iterable, List
|
|
|
|
def fnmatch(name: AnyStr, pat: AnyStr) -> bool: ...
|
|
def fnmatchcase(name: AnyStr, pat: AnyStr) -> bool: ...
|
|
def filter(names: Iterable[AnyStr], pat: AnyStr) -> List[AnyStr]: ...
|
|
def translate(pat: str) -> str: ...
|