Update root dbm module. (#4199)

This commit is contained in:
Sam Bull
2020-06-09 11:20:09 +01:00
committed by GitHub
parent 40f6856a80
commit 5f70d3721a

View File

@@ -1,11 +1,25 @@
import sys
from types import TracebackType
from typing import Iterator, Optional, Type, Union, MutableMapping
from typing import Union, MutableMapping
from typing_extensions import Literal
_KeyType = Union[str, bytes]
_ValueType = Union[str, bytes]
class _Database(MutableMapping[_KeyType, bytes]):
def close(self) -> None: ...
def __getitem__(self, key: _KeyType) -> bytes: ...
def __setitem__(self, key: _KeyType, value: _ValueType) -> None: ...
def __delitem__(self, key: _KeyType) -> None: ...
def __iter__(self) -> Iterator[bytes]: ...
def __len__(self) -> int: ...
def __del__(self) -> None: ...
def __enter__(self) -> _Database: ...
def __exit__(self, exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException], exc_tb: Optional[TracebackType]) -> None: ...
class error(Exception): ...
def whichdb(filename: str) -> str: ...
def open(file: str, flag: str = ..., mode: int = ...) -> MutableMapping[_KeyType, _ValueType]: ...
def open(file: str, flag: Literal['r', 'w', 'c', 'n'] = ..., mode: int = ...) -> _Database: ...