class typing.io
Wrapper namespace for I/O stream types.
This defines the generic type IO[AnyStr]
and aliases TextIO
and BinaryIO
for respectively IO[str]
and IO[bytes]
. These representing the types of I/O streams such as returned by open()
.
Please login to continue.