massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / fnmatch.pyi
1 # Stubs for fnmatch\r
2 \r
3 # Based on http://docs.python.org/3.2/library/fnmatch.html and\r
4 # python-lib/fnmatch.py\r
5 \r
6 from typing import Iterable, List, AnyStr\r
7 \r
8 def fnmatch(name: AnyStr, pat: AnyStr) -> bool: ...\r
9 def fnmatchcase(name: AnyStr, pat: AnyStr) -> bool: ...\r
10 def filter(names: Iterable[AnyStr], pat: AnyStr) -> List[AnyStr]: ...\r
11 def translate(pat: str) -> str: ...\r