(self)
| 814 | """Base class for TCP-over-IPv4 tests.""" |
| 815 | |
| 816 | def newSocket(self): |
| 817 | return socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 818 | |
| 819 | class UDPTestBase(InetTestBase): |
| 820 | """Base class for UDP-over-IPv4 tests.""" |
no test coverage detected