MCPcopy Index your code
hub / github.com/python/cpython / detach

Method detach

Lib/_pyio.py:817–823  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

815 self.raw.close()
816
817 def detach(self):
818 if self.raw is None:
819 raise ValueError("raw stream already detached")
820 self.flush()
821 raw = self._raw
822 self._raw = None
823 return raw
824
825 ### Inquiries ###
826

Callers

nothing calls this directly

Calls 1

flushMethod · 0.95

Tested by

no test coverage detected