Files
typeshed/stdlib/2.7/fnmatch.pyi
2015-09-30 09:59:44 -07:00

7 lines
268 B
Python

from typing import Iterable, Pattern
def fnmatch(filename: str, pattern: str) -> bool: ...
def fnmatchcase(filename: str, pattern: str) -> bool: ...
def filter(names: Iterable[str], pattern: str) -> Iterable[str]: ...
def translate(pattern: str) -> Pattern[str]: ...