Various stubtest fixes (#5230)

This commit is contained in:
hatal175
2021-04-18 19:30:00 +03:00
committed by GitHub
parent f44f38fda3
commit fbf21995e3
14 changed files with 46 additions and 46 deletions

View File

@@ -16,7 +16,7 @@ def DateFromTicks(ticks: float) -> Date: ...
def TimeFromTicks(ticks: float) -> Time: ...
def TimestampFromTicks(ticks: float) -> Timestamp: ...
version_info: str
version_info: Tuple[int, int, int]
sqlite_version_info: Tuple[int, int, int]
if sys.version_info >= (3,):
Binary = memoryview
@@ -289,7 +289,7 @@ class Row(object):
def __hash__(self): ...
def __iter__(self): ...
def __le__(self, other): ...
def __len__(self, *args: Any, **kwargs: Any): ...
def __len__(self): ...
def __lt__(self, other): ...
def __ne__(self, other): ...