(self)
| 5292 | # `_socket.socketpair` does not exist. (AF_INET does not work with |
| 5293 | # _socket.socketpair on many platforms). |
| 5294 | def socketpair(self): |
| 5295 | # called by super().setUp(). |
| 5296 | try: |
| 5297 | return socket.socketpair(socket.AF_INET6) |
| 5298 | except OSError: |
| 5299 | return socket.socketpair(socket.AF_INET) |
| 5300 | |
| 5301 | # Local imports in this class make for easy security fix backporting. |
| 5302 |
nothing calls this directly
no test coverage detected