mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
8
stdlib/glob.pyi
Normal file
8
stdlib/glob.pyi
Normal file
@@ -0,0 +1,8 @@
|
||||
from typing import AnyStr, Iterator, List, Union
|
||||
|
||||
def glob0(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
||||
def glob1(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
||||
def glob(pathname: AnyStr, *, recursive: bool = ...) -> List[AnyStr]: ...
|
||||
def iglob(pathname: AnyStr, *, recursive: bool = ...) -> Iterator[AnyStr]: ...
|
||||
def escape(pathname: AnyStr) -> AnyStr: ...
|
||||
def has_magic(s: Union[str, bytes]) -> bool: ... # undocumented
|
||||
Reference in New Issue
Block a user