forked from hardbyte/python-can
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypechecking.py
More file actions
69 lines (50 loc) · 1.52 KB
/
typechecking.py
File metadata and controls
69 lines (50 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""Types for mypy type-checking
"""
import gzip
import typing
if typing.TYPE_CHECKING:
import os
class CanFilter(typing.TypedDict):
can_id: int
can_mask: int
class CanFilterExtended(typing.TypedDict):
can_id: int
can_mask: int
extended: bool
CanFilters = typing.Sequence[typing.Union[CanFilter, CanFilterExtended]]
# TODO: Once buffer protocol support lands in typing, we should switch to that,
# since can.message.Message attempts to call bytearray() on the given data, so
# this should have the same typing info.
#
# See: https://github.com/python/typing/issues/593
CanData = typing.Union[bytes, bytearray, int, typing.Iterable[int]]
# Used for the Abstract Base Class
ChannelStr = str
ChannelInt = int
Channel = typing.Union[ChannelInt, ChannelStr]
# Used by the IO module
FileLike = typing.Union[typing.TextIO, typing.BinaryIO, gzip.GzipFile]
StringPathLike = typing.Union[str, "os.PathLike[str]"]
AcceptedIOType = typing.Union[FileLike, StringPathLike]
BusConfig = typing.NewType("BusConfig", typing.Dict[str, typing.Any])
class AutoDetectedConfig(typing.TypedDict):
interface: str
channel: Channel
ReadableBytesLike = typing.Union[bytes, bytearray, memoryview]
class BitTimingDict(typing.TypedDict):
f_clock: int
brp: int
tseg1: int
tseg2: int
sjw: int
nof_samples: int
class BitTimingFdDict(typing.TypedDict):
f_clock: int
nom_brp: int
nom_tseg1: int
nom_tseg2: int
nom_sjw: int
data_brp: int
data_tseg1: int
data_tseg2: int
data_sjw: int