mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
7 lines
268 B
Python
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]: ...
|