mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
import sys
|
||||
from _typeshed import StrOrBytesPath
|
||||
from typing import AnyStr, Iterator, List, Optional, Union
|
||||
from typing import AnyStr, Iterator, List
|
||||
|
||||
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 = ...
|
||||
pathname: AnyStr, *, root_dir: StrOrBytesPath | None = ..., dir_fd: int | None = ..., recursive: bool = ...
|
||||
) -> List[AnyStr]: ...
|
||||
def iglob(
|
||||
pathname: AnyStr, *, root_dir: Optional[StrOrBytesPath] = ..., dir_fd: Optional[int] = ..., recursive: bool = ...
|
||||
pathname: AnyStr, *, root_dir: StrOrBytesPath | None = ..., dir_fd: int | None = ..., recursive: bool = ...
|
||||
) -> Iterator[AnyStr]: ...
|
||||
|
||||
else:
|
||||
@@ -18,4 +18,4 @@ else:
|
||||
def iglob(pathname: AnyStr, *, recursive: bool = ...) -> Iterator[AnyStr]: ...
|
||||
|
||||
def escape(pathname: AnyStr) -> AnyStr: ...
|
||||
def has_magic(s: Union[str, bytes]) -> bool: ... # undocumented
|
||||
def has_magic(s: str | bytes) -> bool: ... # undocumented
|
||||
|
||||
Reference in New Issue
Block a user