class typing.ByteString(Sequence[int])
A generic version of collections.abc.ByteString
.
This type represents the types bytes
, bytearray
, and memoryview
.
As a shorthand for this type, bytes
can be used to annotate arguments of any of the types mentioned above.
Please login to continue.