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)
| 781 | self._unsupported("write") |
| 782 | |
| 783 | def detach(self): |
| 784 | """ |
| 785 | Separate the underlying raw stream from the buffer and return it. |
| 786 | |
| 787 | After the raw stream has been detached, the buffer is in an unusable |
| 788 | state. |
| 789 | """ |
| 790 | self._unsupported("detach") |
| 791 | |
| 792 | io.BufferedIOBase.register(BufferedIOBase) |
| 793 |
nothing calls this directly
no test coverage detected