mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
* Replace all uses of StrPath, BytesPath, and AnyPath in Python 2 stubs. * Add StrOrBytesPath as preferred alias for AnyPath. * Replace all remaining AnyPath instances with StrOrBytesPath. * Mark AnyPath as obsolete. Part of #5470
22 lines
880 B
Python
22 lines
880 B
Python
import sys
|
|
from _typeshed import StrOrBytesPath
|
|
from typing import AnyStr, Iterator, List, Optional, Union
|
|
|
|
def glob0(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
|
def glob1(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...
|
|
|
|
if sys.version_info >= (3, 10):
|
|
def glob(
|
|
pathname: AnyStr, *, root_dir: Optional[StrOrBytesPath] = ..., dir_fd: Optional[int] = ..., recursive: bool = ...
|
|
) -> List[AnyStr]: ...
|
|
def iglob(
|
|
pathname: AnyStr, *, root_dir: Optional[StrOrBytesPath] = ..., dir_fd: Optional[int] = ..., recursive: bool = ...
|
|
) -> Iterator[AnyStr]: ...
|
|
|
|
else:
|
|
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
|