(self)
| 505 | _ss.close(self) |
| 506 | |
| 507 | def close(self): |
| 508 | # This function should not reference any globals. See issue #808164. |
| 509 | self._closed = True |
| 510 | if self._io_refs <= 0: |
| 511 | self._real_close() |
| 512 | |
| 513 | def detach(self): |
| 514 | """detach() -> file descriptor |
no test coverage detected