Separate the underlying raw stream from the buffer and return it. After the raw stream has been detached, the buffer is in an unusable state.
(self)
| 747 | self._unsupported("write") |
| 748 | |
| 749 | def detach(self): |
| 750 | """ |
| 751 | Separate the underlying raw stream from the buffer and return it. |
| 752 | |
| 753 | After the raw stream has been detached, the buffer is in an unusable |
| 754 | state. |
| 755 | """ |
| 756 | self._unsupported("detach") |
| 757 | |
| 758 | io.BufferedIOBase.register(BufferedIOBase) |
| 759 |
nothing calls this directly
no test coverage detected