(self)
| 497 | _ss.close(self) |
| 498 | |
| 499 | def close(self): |
| 500 | # This function should not reference any globals. See issue #808164. |
| 501 | self._closed = True |
| 502 | if self._io_refs <= 0: |
| 503 | self._real_close() |
| 504 | |
| 505 | def detach(self): |
| 506 | """detach() -> file descriptor |
no test coverage detected