1. c9b3ef2 Issue #16997: unittest.TestCase now provides a subTest() context manager to procedurally generate, in an easy way, small test instances. by Antoine Pitrou · 11 years ago
  2. 16b5c13 Merge 3.3, issue #17047: remove doubled words found in 2.7 to by Terry Jan Reedy · 11 years ago
  3. 98472b8 Merge 3.2, issue #17047: remove doubled words found in 2.7 to by Terry Jan Reedy · 11 years ago
  4. c30b7b1 Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*, by Terry Jan Reedy · 11 years ago
  5. 773e42d Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian by Charles-François Natali · 11 years ago
  6. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  7. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  8. 45cb7f6 Fix test_socket broken in previous commit (changeset 13e2e44db99d). by Serhiy Storchaka · 12 years ago
  9. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  10. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  11. f23e3f7 Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #13876) - probably not Python-related. by Antoine Pitrou · 12 years ago
  12. d5a070f Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #13876) - probably not Python-related. by Antoine Pitrou · 12 years ago
  13. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  14. 92f8b00 Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue #13876) - probably not Python-related. by Antoine Pitrou · 12 years ago
  15. 016884c Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 12 years ago
  16. 45bb613 Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 12 years ago
  17. 9b1c84b Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. by Antoine Pitrou · 12 years ago
  18. 1e7ee9d Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. by Antoine Pitrou · 12 years ago
  19. 8d459f0 #15284: Skip {send,recv}msg tests with disabled IPv6 by Ross Lagerwall · 12 years ago
  20. b7eb563 Errors in "client" methods in test_socket were ignored because of a bogus except clause. by Antoine Pitrou · 12 years ago
  21. 52a11f1 Issue #14310: Catch testing errors when trying to create unsupported socket by Kristján Valur Jónsson · 12 years ago
  22. 10f383a Issue #14310: inter-process socket duplication for windows by Kristján Valur Jónsson · 12 years ago
  23. 8315f96 Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  24. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  25. 61baebd Issue #12804: Fix test failures on systems without internet access. by Nadeem Vawda · 13 years ago
  26. a58c01b Remove redundant resource check in test_socket. by Nadeem Vawda · 13 years ago
  27. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  28. 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
  29. 4266333 Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  30. d130195 Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
  31. 1637487 Skip test if the path is too long for a AF_UNIX socket by Antoine Pitrou · 13 years ago
  32. 6ec29e2 Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem by Antoine Pitrou · 13 years ago
  33. 4a7abe7 #11112: merge with 3.2. by Ezio Melotti · 13 years ago
  34. 7f78ddc #11112: Fix typo in a base class in test_socket. by Ezio Melotti · 13 years ago
  35. 240c55f Fix test_socket when built whithout threads. by Charles-François Natali · 13 years ago
  36. 10b8cf4 Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support. by Charles-François Natali · 13 years ago
  37. 24d659d Use InterruptedError instead of checking for EINTR by Antoine Pitrou · 13 years ago
  38. ffa547e Fix deprecation warning by Antoine Pitrou · 13 years ago
  39. 86fe860 Fix the threading infrastructure in test_socket to support skipping by Antoine Pitrou · 13 years ago
  40. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  41. 8619cd7 Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, which by Charles-François Natali · 13 years ago
  42. 86aed0b Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  43. 22cd021 Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  44. 9089b79 Fix a race condition in test_socket.ThreadableTest: the client is reported by Charles-François Natali · 13 years ago
  45. a49ed76 Fix a race condition in test_socket.ThreadableTest: the client is reported as by Charles-François Natali · 13 years ago
  46. 2496f33 Close issue 12958 by flagging expected failures in test_socket on Mac OS X by Nick Coghlan · 13 years ago
  47. 3d1706f Fix deprecation warnings in test_socket. by Nadeem Vawda · 13 years ago
  48. 96fe56a Add support for the send/recvmsg API to the socket module. Patch by David Watson and Heiko Wundram. (Closes #6560) by Nick Coghlan · 13 years ago
  49. e674747 Issue #12326: refactor usage of sys.platform by Victor Stinner · 13 years ago
  50. 9c3de4a Issue #12326: don't test the major version of sys.platform by Victor Stinner · 13 years ago
  51. 239bb96 Issue #12196: Make test.support's requires_linux_version a decorator. by Charles-François Natali · 13 years ago
  52. fea0f4d Issue #12158: Move linux_version() from test_socket to test.support by Victor Stinner · 13 years ago
  53. 6071359 Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex() by Charles-François Natali · 13 years ago
  54. 5ed2e77 Issue #1746656: Add if_nameindex, if_nametoindex, if_indextoname by Gregory P. Smith · 13 years ago
  55. 74b4885 Issue #12054: use support.find_unused_port() instead of reinventing the wheel by Antoine Pitrou · 13 years ago
  56. ccc87b5 Issue #12054: use support.find_unused_port() instead of reinventing the wheel by Antoine Pitrou · 13 years ago
  57. 3cade99 Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  58. 1be815a Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  59. 845f152 Refactor buggy test to correctly use the msg argument of assertRaises. by Ezio Melotti · 13 years ago
  60. 8b7664d #5421: merge with 3.2. by Ezio Melotti · 13 years ago
  61. 4c1aebd #5421: merge with 3.1. by Ezio Melotti · 13 years ago
  62. 63e4230 #5421: add tests. by Ezio Melotti · 13 years ago
  63. 9c39f3c Issue #11811: Factor out detection of IPv6 support on the current host by Antoine Pitrou · 13 years ago
  64. fc2e376 Issue #11749: try to fix transient test_socket failure by Antoine Pitrou · 13 years ago
  65. 43bf045 Issue #11749: try to fix transient test_socket failure by Antoine Pitrou · 13 years ago
  66. 6d58d64 Issue #11127: Raise a TypeError when trying to pickle a socket object. by Antoine Pitrou · 13 years ago
  67. 061cfb5 Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. by Antoine Pitrou · 13 years ago
  68. 5d5381e Merged revisions 88622 via svnmerge from by Antoine Pitrou · 13 years ago
  69. 68e5c04 Issue #7322: Trying to read from a socket's file-like object after a timeout by Antoine Pitrou · 13 years ago
  70. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  71. 600232b Issue #7995: When calling accept() on a socket with a timeout, the returned by Antoine Pitrou · 14 years ago
  72. c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of by Victor Stinner · 14 years ago
  73. 1d5eb34 test_socket: use context managers to close directly the socket by Victor Stinner · 14 years ago
  74. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
  75. f65e25b Merged revisions 86134,86315-86316,86390,86424-86425,86428,86550,86561-86562,86564-86565,86705,86708,86713 via svnmerge from by Georg Brandl · 14 years ago
  76. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  77. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  78. 89197fe socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case. by Georg Brandl · 14 years ago
  79. 5ad0bd6 Add socket cleanup for ResourceWarning and update test to use skip decorator by Brian Curtin · 14 years ago
  80. 8f8ed94 Merged revisions 86151 via svnmerge from by Brian Curtin · 14 years ago
  81. 3beb38f Fix three ResourceWarnings. by Brian Curtin · 14 years ago
  82. 21ebbb7 Clean up ResourceWarnings due to unclosed sockets. by Brian Curtin · 14 years ago
  83. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  84. 1cae8b5 Also guard other SOCK_NONBLOCK test by Antoine Pitrou · 14 years ago
  85. acd0fda Fix SOCK_CLOEXEC and SOCK_NONBLOCK tests on recent glibcs with old Linux kernels. by Antoine Pitrou · 14 years ago
  86. 397cd8a Merged revisions 85586-85587,85596-85598 via svnmerge from by Gregory P. Smith · 14 years ago
  87. b603d03 fix for netbsd. by Gregory P. Smith · 14 years ago
  88. fe97913 Enable debug output at the start of the regression suite instead. by Antoine Pitrou · 14 years ago
  89. f64317e Temporary debug printout for buildbots by Antoine Pitrou · 14 years ago
  90. b1c5496 Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, by Antoine Pitrou · 14 years ago
  91. 674f400 Merged revisions 85420 via svnmerge from by Antoine Pitrou · 14 years ago
  92. 834bd81 Issue #10041: The signature of optional arguments in socket.makefile() by Antoine Pitrou · 14 years ago
  93. 08ae02f Merged revisions 85032 via svnmerge from by Antoine Pitrou · 14 years ago
  94. 6d7df63 Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is by Antoine Pitrou · 14 years ago
  95. 98b4670 Issue #9854: SocketIO objects now observe the RawIOBase interface in by Antoine Pitrou · 14 years ago
  96. 2e55fec Make testDefaults in test.test_socket.BasicSocketPairTest more reliable. by Antoine Pitrou · 14 years ago
  97. 9e0b864 Issue #1552: socket.socketpair() now returns regular socket.socket by Antoine Pitrou · 14 years ago
  98. 460ff3d Skip socket tests that require the network, if the network resource is not enabled by Daniel Stutzbach · 14 years ago
  99. b383dbb Fix issue 9794: adds context manager protocol to socket.socket so that socket.create_connection() can be used with the 'with' statement. by Giampaolo Rodolà · 14 years ago
  100. 4d7979b Merged revisions 84597-84599 via svnmerge from by Antoine Pitrou · 14 years ago