(self, fd)
| 5894 | return fd |
| 5895 | |
| 5896 | def close(self, fd): |
| 5897 | if WIN32: |
| 5898 | socket.socket(socket.AF_INET, socket.SOCK_STREAM, fileno=fd).close() |
| 5899 | else: |
| 5900 | os.close(fd) |
| 5901 | |
| 5902 | @classmethod |
| 5903 | def _test_closefds(cls, conn, fd): |
no test coverage detected