diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 16:33:14 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 16:33:14 (GMT) |
| commit | 169ed5946ad3fae10a1b1f703e6b354c4c611138 (patch) | |
| tree | 9efb119cc555f2fe049a0ca9504d68254f009c07 /Lib/test/test_socket.py | |
| parent | 00dc60beee3bf4b68fd658716616f25503a3a9eb (diff) | |
| download | cpython-169ed5946ad3fae10a1b1f703e6b354c4c611138.zip cpython-169ed5946ad3fae10a1b1f703e6b354c4c611138.tar.gz cpython-169ed5946ad3fae10a1b1f703e6b354c4c611138.tar.bz2 | |
#11112: Fix typo in a base class in test_socket.
Diffstat (limited to 'Lib/test/test_socket.py')
| -rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b094ce9..8189bff 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1379,7 +1379,7 @@ class TCPTimeoutTest(SocketTCPTest): # no alarm can be pending. Safe to restore old handler. signal.signal(signal.SIGALRM, old_alarm) -class UDPTimeoutTest(SocketTCPTest): +class UDPTimeoutTest(SocketUDPTest): def testUDPTimeout(self): def raise_timeout(*args, **kwargs): |
