(self, fd)
| 5561 | return fd |
| 5562 | |
| 5563 | def close(self, fd): |
| 5564 | if WIN32: |
| 5565 | socket.socket(socket.AF_INET, socket.SOCK_STREAM, fileno=fd).close() |
| 5566 | else: |
| 5567 | os.close(fd) |
| 5568 | |
| 5569 | @classmethod |
| 5570 | def _test_closefds(cls, conn, fd): |
no test coverage detected