1. 9298eff Bug #978833: Really close underlying socket in _socketobject.close. by Martin v. Löwis · 18 years ago
  2. 7596e83 Release all forwarded functions in .close. Fixes #1513223. by Martin v. Löwis · 18 years ago
  3. af2ae72 Fixes in struct and socket from merge reviews. by Martin Blais · 18 years ago
  4. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 18 years ago
  5. a50794b Patch #1466993: remove wrong comment in socket.py by Georg Brandl · 19 years ago
  6. 0ae07bd Whitespace normalization. by Tim Peters · 19 years ago
  7. bb03ac0 Correct API design mistake from rev. 43126: make socket attributes readonly properties. by Georg Brandl · 19 years ago
  8. bc45a3f RFE #567972: Socket objects' family, type and proto properties are by Georg Brandl · 19 years ago
  9. 01668a1 Fix test for socket.getfqdn() to also include the name returned by by Brett Cannon · 20 years ago
  10. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  11. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  12. 116d83c SF bug 924242: socket._fileobject._getclosed() returns wrong value by Tim Peters · 21 years ago
  13. 1867f24 Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. Fixes #754447. by Martin v. Löwis · 21 years ago
  14. 65f8ced I saw errors from _fileobject.__del__ about missing self._sock. This by Guido van Rossum · 21 years ago
  15. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  16. 70d566b Extract the errno value to use from the errno module if possible. by Fred Drake · 21 years ago
  17. c689918 Regain throughput lost with the _socketobject wrapper. The by Skip Montanaro · 21 years ago
  18. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 21 years ago
  19. 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 22 years ago
  20. dbfb121 On Windows, make sure SocketType is the same as socket. (SF bug 598097) by Guido van Rossum · 22 years ago
  21. d7e8a0d Delete junk attributes left behind by _socketobject class construction. by Tim Peters · 22 years ago
  22. 715f970 The _socketobject class has no need for a __del__ method: all it did was by Guido van Rossum · 22 years ago
  23. 48b7969 OK, one more hack: speed up the case of readline() in unbuffered mode. by Guido van Rossum · 22 years ago
  24. fb3deec Another refactoring of read() and readline(), this time based on the by Guido van Rossum · 22 years ago
  25. de7cade Extend __all__ with the exports list of the _ssl module. by Guido van Rossum · 22 years ago
  26. 7c3b634 Oops, stupid tabs. Sorry again. by Guido van Rossum · 22 years ago
  27. c18993f Another refactoring. Changed 'socket' from being a factory function by Guido van Rossum · 22 years ago
  28. 443fec3 Major restructuring of _fileobject. Hopefully several things now work by Guido van Rossum · 22 years ago
  29. 9ed5ae7 Replace tabs with spaces. (Sorry!) by Guido van Rossum · 22 years ago
  30. e9f6614 "Unbuffered" mode of class _fileobject wasn't actually unbuffered, by Guido van Rossum · 22 years ago
  31. 6be1475 Restore a full arglist to the socket wrapper, so it supports keyword by Tim Peters · 22 years ago
  32. 8c3fb87 For platforms (like Windows) that wrap _socket.socket: by Tim Peters · 22 years ago
  33. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  34. 2b34290 Cleanup a little by Neal Norwitz · 22 years ago
  35. 67f7a38 SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  36. 18e6778 Repair so that importing socket doesn't blow up on platforms that lack by Tim Peters · 23 years ago
  37. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 23 years ago
  38. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 23 years ago
  39. 99d2fbb Move the helper class _closedsocket *into* the _socketobject class. by Guido van Rossum · 23 years ago
  40. b2c763f Add 'sendall' to list of socket methods. by Guido van Rossum · 23 years ago
  41. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  42. 112ea6b Inspired by Greg Stein's proposed simplification of the _closesocket by Guido van Rossum · 23 years ago
  43. e5e5059 When the socket is closed, don't just assign 0 to self._sock. by Guido van Rossum · 23 years ago
  44. a19a168 Whitespace normalization. by Tim Peters · 24 years ago
  45. 3f69f21 Add a wrapper function for ssl() on Windows. Inspired by SF patch by Guido van Rossum · 24 years ago
  46. 64de1a4 add errorTab to __all__ on win* closes bug #406642 by Skip Montanaro · 24 years ago
  47. d74fb6b RISCOS changes by dschwertberger. by Guido van Rossum · 24 years ago
  48. 0de6580 bunch more __all__ lists by Skip Montanaro · 24 years ago
  49. 495ad3c Whitespace normalization. by Tim Peters · 24 years ago
  50. af484d5 Mention in the module's doc string that other functions of the socket API by Martin v. Löwis · 24 years ago
  51. 6df27f8 Support sizehint in _fileobject.readlines, as documented. by Martin v. Löwis · 24 years ago
  52. 344ecdb Before comparing os.uname() to BeOS check that os.uname actually exists:-) by Jack Jansen · 24 years ago
  53. 2d2785a updated occurences of fqdn algorithm (closes patch #101197) by Peter Schneider-Kamp · 24 years ago
  54. a6070f0 Revise the wrapper structure for the socket module: by Fred Drake · 24 years ago