Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update type annotations to allow binding arrays #58

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion comdb2/cdb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ from typing import Mapping
from typing import NamedTuple
from typing import Optional
from typing import Text
from typing import Tuple
from typing import Union
from typing import overload

Expand Down Expand Up @@ -106,7 +107,23 @@ ERROR_CODE: Dict[Text, int]
TYPE: Dict[Text, int]
HANDLE_FLAGS: Dict[Text, int]

Value = Union[None, int, float, bytes, Text, datetime, DatetimeUs]
Value = Union[
None,
int,
float,
bytes,
Text,
datetime,
DatetimeUs,
List[int],
List[float],
List[bytes],
List[str],
Tuple[int, ...],
Tuple[float, ...],
Tuple[bytes, ...],
Tuple[str, ...],
]
Row = Any


Expand Down
Loading