massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / fnmatch.pyi
1 from typing import AnyStr, Iterable, List, Union\r
2 \r
3 _EitherStr = Union[str, unicode]\r
4 \r
5 def fnmatch(filename: _EitherStr, pattern: _EitherStr) -> bool: ...\r
6 def fnmatchcase(filename: _EitherStr, pattern: _EitherStr) -> bool: ...\r
7 def filter(names: Iterable[AnyStr], pattern: _EitherStr) -> List[AnyStr]: ...\r
8 def translate(pattern: AnyStr) -> AnyStr: ...\r