mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-08 02:40:58 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
6
stdlib/fnmatch.pyi
Normal file
6
stdlib/fnmatch.pyi
Normal file
@@ -0,0 +1,6 @@
|
||||
from typing import AnyStr, Iterable, List
|
||||
|
||||
def fnmatch(name: AnyStr, pat: AnyStr) -> bool: ...
|
||||
def fnmatchcase(name: AnyStr, pat: AnyStr) -> bool: ...
|
||||
def filter(names: Iterable[AnyStr], pat: AnyStr) -> List[AnyStr]: ...
|
||||
def translate(pat: str) -> str: ...
|
||||
Reference in New Issue
Block a user