mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
* Add os.add_dll_directory() * Add memfd_create() and flags * Add type annotation to flags * Add stat_result.st_reparse_tag and flags * Add ncurses_version * Add Path.link_to() * Add Picker.reducer_override() * Add plistlib.UID * Add has_dualstack_ipv6() and create_server() * Add shlex.join() * Add SSL methods and fields * Add Python 3.8 statistics functions and classes * Remove obsolete sys.subversion * Add sys.unraisablehook * Add threading.excepthook * Add get_native_id() and Thread.native_id * Add Python 3.8 tkinter methods * Add CLOCK_UPTIME_RAW * Add SupportsIndex * Add typing.get_origin() and get_args() * Add unicodedata.is_normalized * Add unittest.mock.AsyncMock Currently this is just an alias for Any like Mock and MagicMock. All of these classes should probably be sub-classing Any and add their own methods. See also #3224. * Add unittest cleanup methods * Add IsolatedAsyncioTestCase * Add ElementTree.canonicalize() and C14NWriterTarget * cProfile.Profile can be used as a context manager * Add asyncio task name handling * mmap.flush() now always returns None * Add posonlyargcount to CodeType
142 lines
3.6 KiB
Python
142 lines
3.6 KiB
Python
import sys
|
|
from typing import Any, IO, Mapping, Union, Tuple, Callable, Optional, Iterator
|
|
|
|
HIGHEST_PROTOCOL: int
|
|
if sys.version_info >= (3, 0):
|
|
DEFAULT_PROTOCOL: int
|
|
|
|
|
|
if sys.version_info >= (3, 0):
|
|
def dump(obj: Any, file: IO[bytes], protocol: Optional[int] = ..., *,
|
|
fix_imports: bool = ...) -> None: ...
|
|
def dumps(obj: Any, protocol: Optional[int] = ..., *,
|
|
fix_imports: bool = ...) -> bytes: ...
|
|
def loads(bytes_object: bytes, *, fix_imports: bool = ...,
|
|
encoding: str = ..., errors: str = ...) -> Any: ...
|
|
def load(file: IO[bytes], *, fix_imports: bool = ..., encoding: str = ...,
|
|
errors: str = ...) -> Any: ...
|
|
else:
|
|
def dump(obj: Any, file: IO[bytes], protocol: Optional[int] = ...) -> None: ...
|
|
def dumps(obj: Any, protocol: Optional[int] = ...) -> bytes: ...
|
|
def load(file: IO[bytes]) -> Any: ...
|
|
def loads(string: bytes) -> Any: ...
|
|
|
|
class PickleError(Exception): ...
|
|
class PicklingError(PickleError): ...
|
|
class UnpicklingError(PickleError): ...
|
|
|
|
_reducedtype = Union[str,
|
|
Tuple[Callable[..., Any], Tuple[Any, ...]],
|
|
Tuple[Callable[..., Any], Tuple[Any, ...], Any],
|
|
Tuple[Callable[..., Any], Tuple[Any, ...], Any,
|
|
Optional[Iterator]],
|
|
Tuple[Callable[..., Any], Tuple[Any, ...], Any,
|
|
Optional[Iterator], Optional[Iterator]]]
|
|
|
|
|
|
class Pickler:
|
|
fast: bool
|
|
if sys.version_info >= (3, 3):
|
|
dispatch_table: Mapping[type, Callable[[Any], _reducedtype]]
|
|
|
|
if sys.version_info >= (3, 0):
|
|
def __init__(self, file: IO[bytes], protocol: Optional[int] = ..., *,
|
|
fix_imports: bool = ...) -> None: ...
|
|
else:
|
|
def __init__(self, file: IO[bytes], protocol: Optional[int] = ...) -> None: ...
|
|
|
|
def dump(self, obj: Any) -> None: ...
|
|
def clear_memo(self) -> None: ...
|
|
def persistent_id(self, obj: Any) -> Any: ...
|
|
if sys.version_info >= (3, 8):
|
|
def reducer_override(self, obj: Any) -> Any: ...
|
|
|
|
class Unpickler:
|
|
if sys.version_info >= (3, 0):
|
|
def __init__(self, file: IO[bytes], *, fix_imports: bool = ...,
|
|
encoding: str = ..., errors: str = ...) -> None: ...
|
|
else:
|
|
def __init__(self, file: IO[bytes]) -> None: ...
|
|
|
|
def load(self) -> Any: ...
|
|
def find_class(self, module: str, name: str) -> Any: ...
|
|
if sys.version_info >= (3, 0):
|
|
def persistent_load(self, pid: Any) -> Any: ...
|
|
|
|
MARK: bytes
|
|
STOP: bytes
|
|
POP: bytes
|
|
POP_MARK: bytes
|
|
DUP: bytes
|
|
FLOAT: bytes
|
|
INT: bytes
|
|
BININT: bytes
|
|
BININT1: bytes
|
|
LONG: bytes
|
|
BININT2: bytes
|
|
NONE: bytes
|
|
PERSID: bytes
|
|
BINPERSID: bytes
|
|
REDUCE: bytes
|
|
STRING: bytes
|
|
BINSTRING: bytes
|
|
SHORT_BINSTRING: bytes
|
|
UNICODE: bytes
|
|
BINUNICODE: bytes
|
|
APPEND: bytes
|
|
BUILD: bytes
|
|
GLOBAL: bytes
|
|
DICT: bytes
|
|
EMPTY_DICT: bytes
|
|
APPENDS: bytes
|
|
GET: bytes
|
|
BINGET: bytes
|
|
INST: bytes
|
|
LONG_BINGET: bytes
|
|
LIST: bytes
|
|
EMPTY_LIST: bytes
|
|
OBJ: bytes
|
|
PUT: bytes
|
|
BINPUT: bytes
|
|
LONG_BINPUT: bytes
|
|
SETITEM: bytes
|
|
TUPLE: bytes
|
|
EMPTY_TUPLE: bytes
|
|
SETITEMS: bytes
|
|
BINFLOAT: bytes
|
|
|
|
TRUE: bytes
|
|
FALSE: bytes
|
|
|
|
# protocol 2
|
|
PROTO: bytes
|
|
NEWOBJ: bytes
|
|
EXT1: bytes
|
|
EXT2: bytes
|
|
EXT4: bytes
|
|
TUPLE1: bytes
|
|
TUPLE2: bytes
|
|
TUPLE3: bytes
|
|
NEWTRUE: bytes
|
|
NEWFALSE: bytes
|
|
LONG1: bytes
|
|
LONG4: bytes
|
|
|
|
if sys.version_info >= (3, 0):
|
|
# protocol 3
|
|
BINBYTES: bytes
|
|
SHORT_BINBYTES: bytes
|
|
|
|
if sys.version_info >= (3, 4):
|
|
# protocol 4
|
|
SHORT_BINUNICODE: bytes
|
|
BINUNICODE8: bytes
|
|
BINBYTES8: bytes
|
|
EMPTY_SET: bytes
|
|
ADDITEMS: bytes
|
|
FROZENSET: bytes
|
|
NEWOBJ_EX: bytes
|
|
STACK_GLOBAL: bytes
|
|
MEMOIZE: bytes
|
|
FRAME: bytes
|