1. 5d625cf Issue #26384: Merge from 3.5 by Berker Peksag · 8 years ago
  2. bcfb35f Issue #26384: Fix UnboundLocalError in socket._sendfile_use_sendfile by Berker Peksag · 8 years ago
  3. 40bed8a issue28083: add IntFlag constants by Ethan Furman · 8 years ago
  4. 3da5743 Issue #27698: Add socketpair to socket.__all__ on Windows by Victor Stinner · 8 years ago
  5. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  6. 3fe64d0 Issue #16915: Clarify that mode parameter of socket.makefile() does not accept by Berker Peksag · 8 years ago
  7. 2775d85 merge 3.4 (#25471) by Benjamin Peterson · 9 years ago
  8. d9dbf49 accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471) by Benjamin Peterson · 9 years ago
  9. 24e837f issue23673 by Ethan Furman · 9 years ago
  10. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  11. 610bc6a merge 3.4 (#23221) by Benjamin Peterson · 9 years ago
  12. 82f34ad fix instances of consecutive articles (closes #23221) by Benjamin Peterson · 9 years ago
  13. a9568bb Issue #20604: Added missed invalid mode in error message of socket.makefile(). by Serhiy Storchaka · 10 years ago
  14. fca2fc0 Issue #20604: Added missed invalid mode in error message of socket.makefile(). by Serhiy Storchaka · 10 years ago
  15. 61358f4 Issue20689: add missing API pieces to __all__ by Ethan Furman · 10 years ago
  16. 8e120ac Issue20689: add missing API pieces to __all__ by Ethan Furman · 10 years ago
  17. 41d3196 Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are SocketKind by Ethan Furman · 10 years ago
  18. 7184bac Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are SocketKind by Ethan Furman · 10 years ago
  19. 98c745a Issue #18643: Add socket.socketpair() on Windows. by Charles-François Natali · 10 years ago
  20. 521e586 Issue #22032: __qualname__ instead of __name__ is now always used to format by Serhiy Storchaka · 10 years ago
  21. 482fe04 issue23673 by Ethan Furman · 9 years ago
  22. 915d141 fix issue #17552: add socket.sendfile() method allowing to send a file over a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'· by Giampaolo Rodola' · 10 years ago
  23. b628149 Provide a more readable representation of socket on repr(). by Giampaolo Rodola' · 11 years ago
  24. b2ff3cf Switch the AF_* and SOCK_* constants in the socket module to IntEnum. by Eli Bendersky · 11 years ago
  25. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  26. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  27. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  28. 50331cb Fix issue #17675: make socket repr() provide local and remote addresses (if any). by Giampaolo Rodola' · 11 years ago
  29. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  30. 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
  31. 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
  32. 10f383a Issue #14310: inter-process socket duplication for windows by Kristján Valur Jónsson · 12 years ago
  33. 8315f96 Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  34. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  35. 24d659d Use InterruptedError instead of checking for EINTR by Antoine Pitrou · 13 years ago
  36. 6d58d64 Issue #11127: Raise a TypeError when trying to pickle a socket object. by Antoine Pitrou · 13 years ago
  37. 5d5381e Merged revisions 88622 via svnmerge from by Antoine Pitrou · 13 years ago
  38. 68e5c04 Issue #7322: Trying to read from a socket's file-like object after a timeout by Antoine Pitrou · 13 years ago
  39. 600232b Issue #7995: When calling accept() on a socket with a timeout, the returned by Antoine Pitrou · 13 years ago
  40. c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of by Victor Stinner · 13 years ago
  41. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are 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. 98b4670 Issue #9854: SocketIO objects now observe the RawIOBase interface in by Antoine Pitrou · 14 years ago
  44. 8dd2387 Reverted unwanted change in r84826 by Antoine Pitrou · 14 years ago
  45. 5aa0d10 Improve docs for socket.makefile() and SocketIO by Antoine Pitrou · 14 years ago
  46. 872b79d Add a comment explaining why SocketIO is needed by Antoine Pitrou · 14 years ago
  47. 9e0b864 Issue #1552: socket.socketpair() now returns regular socket.socket by Antoine Pitrou · 14 years ago
  48. 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
  49. 4b92b5f Issue #9792: In case of connection failure, socket.create_connection() by Antoine Pitrou · 14 years ago
  50. 49203dc reformat comment by Benjamin Peterson · 14 years ago
  51. 19d6a4f Issue #808164: Fixed socket.close to avoid references to globals, to by Daniel Stutzbach · 14 years ago
  52. 34d17de remove SocketIO.__del__; close() can handle it by Benjamin Peterson · 14 years ago
  53. aafdca8 Merged revisions 74426 via svnmerge from by Gregory P. Smith · 14 years ago
  54. b406637 Merged revisions 77263-77264 via svnmerge from by Gregory P. Smith · 14 years ago
  55. 5c91bf3 Merged revisions 73138 via svnmerge from by Mark Dickinson · 15 years ago
  56. ef3e4c2 Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from by Benjamin Peterson · 15 years ago
  57. de3369f Fixes issue #3826 and #4791: by Gregory P. Smith · 15 years ago
  58. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  59. 9d24ff0 Follow-up of r67300: correct a failure in socket.makefile(). by Amaury Forgeot d'Arc · 16 years ago
  60. 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
  61. 54cc54c update to fix leak in SSL code by Bill Janssen · 16 years ago
  62. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  63. 86bc33c Patch 1439 by Bill Janssen. I think this will work. by Guido van Rossum · 17 years ago
  64. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  65. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  66. 245b42e Found a different, more direct way to disable ssl support until it's fixed. by Guido van Rossum · 17 years ago
  67. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  68. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  69. 5accbdb Make sure socket.close() doesn't interfere with socket.makefile(). by Jeremy Hylton · 17 years ago
  70. 93adc5d (1) SF patch# 1755214 by Amaury Forgeot d'Arc which makes some tests by Guido van Rossum · 17 years ago
  71. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  72. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  73. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  74. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 17 years ago
  75. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  76. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  77. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  78. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  79. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  80. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  81. 01668a1 Fix test for socket.getfqdn() to also include the name returned by by Brett Cannon · 19 years ago
  82. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  83. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  84. 116d83c SF bug 924242: socket._fileobject._getclosed() returns wrong value by Tim Peters · 20 years ago
  85. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  86. 65f8ced I saw errors from _fileobject.__del__ about missing self._sock. This by Guido van Rossum · 21 years ago
  87. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  88. 70d566b Extract the errno value to use from the errno module if possible. by Fred Drake · 21 years ago
  89. c689918 Regain throughput lost with the _socketobject wrapper. The by Skip Montanaro · 21 years ago
  90. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 21 years ago
  91. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 21 years ago
  92. dbfb121 On Windows, make sure SocketType is the same as socket. (SF bug 598097) by Guido van Rossum · 22 years ago
  93. d7e8a0d Delete junk attributes left behind by _socketobject class construction. by Tim Peters · 22 years ago
  94. 715f970 The _socketobject class has no need for a __del__ method: all it did was by Guido van Rossum · 22 years ago
  95. 48b7969 OK, one more hack: speed up the case of readline() in unbuffered mode. by Guido van Rossum · 22 years ago
  96. fb3deec Another refactoring of read() and readline(), this time based on the by Guido van Rossum · 22 years ago
  97. de7cade Extend __all__ with the exports list of the _ssl module. by Guido van Rossum · 22 years ago
  98. 7c3b634 Oops, stupid tabs. Sorry again. by Guido van Rossum · 22 years ago
  99. c18993f Another refactoring. Changed 'socket' from being a factory function by Guido van Rossum · 22 years ago
  100. 443fec3 Major restructuring of _fileobject. Hopefully several things now work by Guido van Rossum · 22 years ago