1. 239bb96 Issue #12196: Make test.support's requires_linux_version a decorator. by Charles-François Natali · 13 years ago
  2. fea0f4d Issue #12158: Move linux_version() from test_socket to test.support by Victor Stinner · 13 years ago
  3. 6071359 Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex() by Charles-François Natali · 13 years ago
  4. 5ed2e77 Issue #1746656: Add if_nameindex, if_nametoindex, if_indextoname by Gregory P. Smith · 13 years ago
  5. 74b4885 Issue #12054: use support.find_unused_port() instead of reinventing the wheel by Antoine Pitrou · 13 years ago
  6. ccc87b5 Issue #12054: use support.find_unused_port() instead of reinventing the wheel by Antoine Pitrou · 13 years ago
  7. 3cade99 Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  8. 1be815a Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  9. 845f152 Refactor buggy test to correctly use the msg argument of assertRaises. by Ezio Melotti · 13 years ago
  10. 8b7664d #5421: merge with 3.2. by Ezio Melotti · 13 years ago
  11. 4c1aebd #5421: merge with 3.1. by Ezio Melotti · 13 years ago
  12. 63e4230 #5421: add tests. by Ezio Melotti · 13 years ago
  13. 9c39f3c Issue #11811: Factor out detection of IPv6 support on the current host by Antoine Pitrou · 13 years ago
  14. fc2e376 Issue #11749: try to fix transient test_socket failure by Antoine Pitrou · 13 years ago
  15. 43bf045 Issue #11749: try to fix transient test_socket failure by Antoine Pitrou · 13 years ago
  16. 6d58d64 Issue #11127: Raise a TypeError when trying to pickle a socket object. by Antoine Pitrou · 13 years ago
  17. 061cfb5 Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. by Antoine Pitrou · 13 years ago
  18. 5d5381e Merged revisions 88622 via svnmerge from by Antoine Pitrou · 13 years ago
  19. 68e5c04 Issue #7322: Trying to read from a socket's file-like object after a timeout by Antoine Pitrou · 13 years ago
  20. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  21. 600232b Issue #7995: When calling accept() on a socket with a timeout, the returned by Antoine Pitrou · 14 years ago
  22. c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of by Victor Stinner · 14 years ago
  23. 1d5eb34 test_socket: use context managers to close directly the socket by Victor Stinner · 14 years ago
  24. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
  25. 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
  26. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  27. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  28. 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
  29. 5ad0bd6 Add socket cleanup for ResourceWarning and update test to use skip decorator by Brian Curtin · 14 years ago
  30. 8f8ed94 Merged revisions 86151 via svnmerge from by Brian Curtin · 14 years ago
  31. 3beb38f Fix three ResourceWarnings. by Brian Curtin · 14 years ago
  32. 21ebbb7 Clean up ResourceWarnings due to unclosed sockets. by Brian Curtin · 14 years ago
  33. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  34. 1cae8b5 Also guard other SOCK_NONBLOCK test by Antoine Pitrou · 14 years ago
  35. acd0fda Fix SOCK_CLOEXEC and SOCK_NONBLOCK tests on recent glibcs with old Linux kernels. by Antoine Pitrou · 14 years ago
  36. 397cd8a Merged revisions 85586-85587,85596-85598 via svnmerge from by Gregory P. Smith · 14 years ago
  37. b603d03 fix for netbsd. by Gregory P. Smith · 14 years ago
  38. fe97913 Enable debug output at the start of the regression suite instead. by Antoine Pitrou · 14 years ago
  39. f64317e Temporary debug printout for buildbots by Antoine Pitrou · 14 years ago
  40. b1c5496 Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, by Antoine Pitrou · 14 years ago
  41. 674f400 Merged revisions 85420 via svnmerge from by Antoine Pitrou · 14 years ago
  42. 834bd81 Issue #10041: The signature of optional arguments in socket.makefile() by Antoine Pitrou · 14 years ago
  43. 08ae02f Merged revisions 85032 via svnmerge from by Antoine Pitrou · 14 years ago
  44. 6d7df63 Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is by Antoine Pitrou · 14 years ago
  45. 98b4670 Issue #9854: SocketIO objects now observe the RawIOBase interface in by Antoine Pitrou · 14 years ago
  46. 2e55fec Make testDefaults in test.test_socket.BasicSocketPairTest more reliable. by Antoine Pitrou · 14 years ago
  47. 9e0b864 Issue #1552: socket.socketpair() now returns regular socket.socket by Antoine Pitrou · 14 years ago
  48. 460ff3d Skip socket tests that require the network, if the network resource is not enabled by Daniel Stutzbach · 14 years ago
  49. 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
  50. 4d7979b Merged revisions 84597-84599 via svnmerge from by Antoine Pitrou · 14 years ago
  51. 4b92b5f Issue #9792: In case of connection failure, socket.create_connection() by Antoine Pitrou · 14 years ago
  52. d9107aa Issue #9777: test_idna requires the "network" resource by Antoine Pitrou · 14 years ago
  53. 06a3c8a fromfd exists on Windows now by Daniel Stutzbach · 14 years ago
  54. 112c0f3 Issue #1027206: getnameinfo is now restricted to numeric addresses as input. by Martin v. Löwis · 14 years ago
  55. 67e91ad Explicitly pass socket type and family for getaddrinfo, by Martin v. Löwis · 14 years ago
  56. 56773cf Mention that gethostbyaddr now also supports IDNA. by Martin v. Löwis · 14 years ago
  57. fc0275a Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and by Martin v. Löwis · 14 years ago
  58. ccfb91c fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments. by Giampaolo Rodolà · 14 years ago
  59. 5b37ce6 Merged revisions 84089 via svnmerge from by Giampaolo Rodolà · 14 years ago
  60. 677d95c fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto' by Giampaolo Rodolà · 14 years ago
  61. b384e6c Merged revisions 84024 via svnmerge from by Giampaolo Rodolà · 14 years ago
  62. 419f704 fix issue #8857: provide a test case for socket.getaddrinfo by Giampaolo Rodolà · 14 years ago
  63. 6e451df Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() by Antoine Pitrou · 14 years ago
  64. e43f9d0 Issue #8524: Add a forget() method to socket objects, so as to put the by Antoine Pitrou · 14 years ago
  65. 94f2528 Remove traces of MacOS9 support. by Ronald Oussoren · 14 years ago
  66. 45df820 Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from by Victor Stinner · 14 years ago
  67. 2548078 NOTE: just porting tests here. by Antoine Pitrou · 14 years ago
  68. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  69. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  70. aafdca8 Merged revisions 74426 via svnmerge from by Gregory P. Smith · 15 years ago
  71. a81d881 Merged revisions 77286 via svnmerge from by Gregory P. Smith · 15 years ago
  72. b406637 Merged revisions 77263-77264 via svnmerge from by Gregory P. Smith · 15 years ago
  73. f3d7dbe Merged revisions 75231 via svnmerge from by Benjamin Peterson · 15 years ago
  74. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  75. 847ec75 http://bugs.python.org/issue6971 Porting revision 75054 from trunk by Kristján Valur Jónsson · 15 years ago
  76. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  77. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  78. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 16 years ago
  79. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 16 years ago
  80. 29500f6 Merged revisions 68611-68613 via svnmerge from by Mark Dickinson · 16 years ago
  81. de3369f Fixes issue #3826 and #4791: by Gregory P. Smith · 16 years ago
  82. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  83. 9d24ff0 Follow-up of r67300: correct a failure in socket.makefile(). by Amaury Forgeot d'Arc · 16 years ago
  84. 2f89aa6 #2538: bytes objects can only provide read-only buffers by Antoine Pitrou · 16 years ago
  85. 672b803 Merged revisions 64125 via svnmerge from by Benjamin Peterson · 16 years ago
  86. f78e02b Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from by Georg Brandl · 16 years ago
  87. 2442015 Create http package. #2883. by Georg Brandl · 16 years ago
  88. 2067bfd Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. by Georg Brandl · 16 years ago
  89. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  90. f260e44 Rename Queue module to queue. by Alexandre Vassalotti · 16 years ago
  91. 5e69685 Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from by Christian Heimes · 16 years ago
  92. ad9d48d Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge from by Benjamin Peterson · 16 years ago
  93. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  94. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  95. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
  96. da3caed Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping the Empty and Full exceptions. by Raymond Hettinger · 17 years ago
  97. 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
  98. 790c823 Merged revisions 59822-59841 via svnmerge from by Christian Heimes · 17 years ago
  99. 043d6f6 Copied doc for reload() from trunk's function.rst to imp.rst by Christian Heimes · 17 years ago
  100. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago