mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
7 lines
250 B
Python
7 lines
250 B
Python
from typing import Iterable
|
|
|
|
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) -> str: ...
|