1. 79a3eb1 Adds an optional source_address parameter to socket.create_connection(). by Gregory P. Smith · 15 years ago
  2. daa524a Fix py3k warnings in the socket module by Antoine Pitrou · 15 years ago
  3. c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 15 years ago
  4. 36c3928 http://bugs.python.org/issue6117 by Kristján Valur Jónsson · 15 years ago
  5. d57b554 Typo in socket.py. Thanks Pablo Torres Navarrete. by Mark Dickinson · 15 years ago
  6. b524825 remove unpleasant exec by Chris Withers · 15 years ago
  7. a27e6e3 add create_connection to __all__ #5711 by Benjamin Peterson · 15 years ago
  8. 3f92bc6 Remove buffer() usage in the socket module by just slicing directly on the by Brett Cannon · 16 years ago
  9. 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 16 years ago
  10. 24237ea Fix a bug introduced in r62627. see issue2760 and issue2632. by Gregory P. Smith · 16 years ago
  11. f8cc640 This should fix issue2632. A long description of the two competing by Gregory P. Smith · 16 years ago
  12. 1beea27 #1389051, #1092502: fix excessively large allocations when using read() on a socket by Andrew M. Kuchling · 16 years ago
  13. a47b75b socket.ioctl is only available on Windows by Christian Heimes · 17 years ago
  14. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 17 years ago
  15. 9c8497e Revert dummy commit now that the build slave is building. by Georg Brandl · 17 years ago
  16. 6f6f6ad Dummy commit to investigate #1617. by Georg Brandl · 17 years ago
  17. 98d19da More work on SSL support. by Bill Janssen · 17 years ago
  18. 426ea0a This contains a number of things: by Bill Janssen · 17 years ago
  19. 4f2c3dd Server-side SSL and certificate validation, by Bill Janssen. by Guido van Rossum · 17 years ago
  20. f25e35b Bug #978833: Close https sockets by releasing the _ssl object. by Martin v. Löwis · 17 years ago
  21. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 17 years ago
  22. 07c78be Added a 'create_connect()' function to socket.py, which creates a by Facundo Batista · 17 years ago
  23. 0af3388 Bug #978833: Revert r50844, as it broke _socketobject.dup. Will backport. by Martin v. Löwis · 17 years ago
  24. dd7b052 Patch #1627441: close sockets properly in urllib2. by Georg Brandl · 18 years ago
  25. 9298eff Bug #978833: Really close underlying socket in _socketobject.close. by Martin v. Löwis · 18 years ago
  26. 7596e83 Release all forwarded functions in .close. Fixes #1513223. by Martin v. Löwis · 18 years ago
  27. af2ae72 Fixes in struct and socket from merge reviews. by Martin Blais · 18 years ago
  28. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 18 years ago
  29. a50794b Patch #1466993: remove wrong comment in socket.py by Georg Brandl · 18 years ago
  30. 0ae07bd Whitespace normalization. by Tim Peters · 18 years ago
  31. bb03ac0 Correct API design mistake from rev. 43126: make socket attributes readonly properties. by Georg Brandl · 18 years ago
  32. bc45a3f RFE #567972: Socket objects' family, type and proto properties are by Georg Brandl · 18 years ago
  33. 01668a1 Fix test for socket.getfqdn() to also include the name returned by by Brett Cannon · 19 years ago
  34. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  35. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  36. 116d83c SF bug 924242: socket._fileobject._getclosed() returns wrong value by Tim Peters · 20 years ago
  37. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  38. 65f8ced I saw errors from _fileobject.__del__ about missing self._sock. This by Guido van Rossum · 21 years ago
  39. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  40. 70d566b Extract the errno value to use from the errno module if possible. by Fred Drake · 21 years ago
  41. c689918 Regain throughput lost with the _socketobject wrapper. The by Skip Montanaro · 21 years ago
  42. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 21 years ago
  43. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 21 years ago
  44. dbfb121 On Windows, make sure SocketType is the same as socket. (SF bug 598097) by Guido van Rossum · 22 years ago
  45. d7e8a0d Delete junk attributes left behind by _socketobject class construction. by Tim Peters · 22 years ago
  46. 715f970 The _socketobject class has no need for a __del__ method: all it did was by Guido van Rossum · 22 years ago
  47. 48b7969 OK, one more hack: speed up the case of readline() in unbuffered mode. by Guido van Rossum · 22 years ago
  48. fb3deec Another refactoring of read() and readline(), this time based on the by Guido van Rossum · 22 years ago
  49. de7cade Extend __all__ with the exports list of the _ssl module. by Guido van Rossum · 22 years ago
  50. 7c3b634 Oops, stupid tabs. Sorry again. by Guido van Rossum · 22 years ago
  51. c18993f Another refactoring. Changed 'socket' from being a factory function by Guido van Rossum · 22 years ago
  52. 443fec3 Major restructuring of _fileobject. Hopefully several things now work by Guido van Rossum · 22 years ago
  53. 9ed5ae7 Replace tabs with spaces. (Sorry!) by Guido van Rossum · 22 years ago
  54. e9f6614 "Unbuffered" mode of class _fileobject wasn't actually unbuffered, by Guido van Rossum · 22 years ago
  55. 6be1475 Restore a full arglist to the socket wrapper, so it supports keyword by Tim Peters · 22 years ago
  56. 8c3fb87 For platforms (like Windows) that wrap _socket.socket: by Tim Peters · 22 years ago
  57. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  58. 2b34290 Cleanup a little by Neal Norwitz · 22 years ago
  59. 67f7a38 SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  60. 18e6778 Repair so that importing socket doesn't blow up on platforms that lack by Tim Peters · 22 years ago
  61. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 22 years ago
  62. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 22 years ago
  63. 99d2fbb Move the helper class _closedsocket *into* the _socketobject class. by Guido van Rossum · 23 years ago
  64. b2c763f Add 'sendall' to list of socket methods. by Guido van Rossum · 23 years ago
  65. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  66. 112ea6b Inspired by Greg Stein's proposed simplification of the _closesocket by Guido van Rossum · 23 years ago
  67. e5e5059 When the socket is closed, don't just assign 0 to self._sock. by Guido van Rossum · 23 years ago
  68. a19a168 Whitespace normalization. by Tim Peters · 23 years ago
  69. 3f69f21 Add a wrapper function for ssl() on Windows. Inspired by SF patch by Guido van Rossum · 23 years ago
  70. 64de1a4 add errorTab to __all__ on win* closes bug #406642 by Skip Montanaro · 23 years ago
  71. d74fb6b RISCOS changes by dschwertberger. by Guido van Rossum · 23 years ago
  72. 0de6580 bunch more __all__ lists by Skip Montanaro · 23 years ago
  73. 495ad3c Whitespace normalization. by Tim Peters · 24 years ago
  74. af484d5 Mention in the module's doc string that other functions of the socket API by Martin v. Löwis · 24 years ago
  75. 6df27f8 Support sizehint in _fileobject.readlines, as documented. by Martin v. Löwis · 24 years ago
  76. 344ecdb Before comparing os.uname() to BeOS check that os.uname actually exists:-) by Jack Jansen · 24 years ago
  77. 2d2785a updated occurences of fqdn algorithm (closes patch #101197) by Peter Schneider-Kamp · 24 years ago
  78. a6070f0 Revise the wrapper structure for the socket module: by Fred Drake · 24 years ago