(self, s: Any)
| 28 | # required to correctly implement BinaryIO |
| 29 | def __enter__(self): return self |
| 30 | def write(self, s: Any): raise io.UnsupportedOperation("TensorIO.write not supported") |
| 31 | def writelines(self, lines: Iterable[Any]): raise io.UnsupportedOperation("TensorIO.writelines not supported") |
| 32 | |
| 33 | safe_dtypes = {"BOOL":dtypes.bool, "I8":dtypes.int8, "U8":dtypes.uint8, "I16":dtypes.int16, "U16":dtypes.uint16, "I32":dtypes.int, "U32":dtypes.uint, |
no outgoing calls
no test coverage detected