(self)
| 514 | _ss.close(self) |
| 515 | |
| 516 | def close(self): |
| 517 | # This function should not reference any globals. See issue #808164. |
| 518 | self._closed = True |
| 519 | if self._io_refs <= 0: |
| 520 | self._real_close() |
| 521 | |
| 522 | def detach(self): |
| 523 | """detach() -> file descriptor |
no test coverage detected