(self)
| 803 | """Base class for TCP-over-IPv4 tests.""" |
| 804 | |
| 805 | def newSocket(self): |
| 806 | return socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 807 | |
| 808 | class UDPTestBase(InetTestBase): |
| 809 | """Base class for UDP-over-IPv4 tests.""" |
no test coverage detected