[issue11112] UDPTimeoutTest derives from SocketTCPTest

2011-11-18 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- assignee: -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: -Python 3.1 ___ Python tracker

[issue11112] UDPTimeoutTest derives from SocketTCPTest

2011-11-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0fdf7f7c353d by Ezio Melotti in branch '2.7': #2: Fix typo in a base class in test_socket. http://hg.python.org/cpython/rev/0fdf7f7c353d New changeset b410bcd300a1 by Ezio Melotti in branch '3.2': #2: Fix typo in a base class in test_socket

[issue11112] UDPTimeoutTest derives from SocketTCPTest

2011-02-04 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. That does indeed seem to be a bug in the test: "UDPTimeoutTest(SocketTCPTest)" should be "UDPTimeoutTest(SocketUDPTest)" As the 3.2 release is in its final release candidate stage and this is not a release critical issue, the fix should wai

[issue11112] UDPTimeoutTest derives from SocketTCPTest

2011-02-03 Thread rmtew
New submission from rmtew : File: Lib\test\test_socket.py Code: class UDPTimeoutTest(SocketTCPTest): Problem: This test is intended to test UDP sockets, but derives from SocketTCPTest. Logic dictates this should derive from SocketUDPTest. I've searched for UDP (with differing case, as t