1. 443a43d Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for getaddrinfo() proto param by Georg Brandl · 11 years ago
  2. 71ede50 Closes #14303: socket.makefile() does not call dup() anymore on the socket fd. by Georg Brandl · 11 years ago
  3. 69d0965 Fix note markup (#16805). by Éric Araujo · 11 years ago
  4. b33336f Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 12 years ago
  5. c973057 #17740: fix links to the socket function. Initial patch by Zachary Ware. by Ezio Melotti · 12 years ago
  6. 93324d7 Update suspicious ignore file. by Ezio Melotti · 12 years ago
  7. 513e9b4 #16666: document default values for socket.getaddrinfo in the text to clarify that it doesn't accept keyword args. by Ezio Melotti · 13 years ago
  8. 1625d88 Issue #16341: convert examples to use except ... as ... syntax. by Andrew Svetlov · 13 years ago
  9. ed3f590 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 13 years ago
  10. 771d98d Issue #15060: better fix, thanks to review on #python-dev by Sandro Tosi · 13 years ago
  11. 89539e8 Issue #15060: fix typo in socket doc; Patch by anatoly techtonik by Sandro Tosi · 13 years ago
  12. c8e29db Mark up constants in socket doc as such by Éric Araujo · 13 years ago
  13. 607e31e Fix Issue #6005: Examples in the socket library documentation use sendall, by Senthil Kumaran · 14 years ago
  14. 98ed08f update to new C roles and directives by Sandro Tosi · 14 years ago
  15. d716c73 Issue #13724: improve documentation for socket.create_connection. by Antoine Pitrou · 14 years ago
  16. a95d19e #12781: Mention SO_REUSEADDR flag near socket examples by Sandro Tosi · 14 years ago
  17. ca5e908 #12725: fix working. Patch by Ben Hayden. by Ezio Melotti · 14 years ago
  18. 47d1d0d Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 14 years ago
  19. 28dadd9 Merged revisions 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,87526,87530-87535 via svnmerge from by Georg Brandl · 14 years ago
  20. 9e7d6e5 Merged revisions 87653-87655 via svnmerge from by Antoine Pitrou · 15 years ago
  21. 21946af Merged revisions 82798,82805,83659,83977,84015,84018,84141,84264,84326-84327,84480,84482,84484,84530-84531,84553,84619,84915-84916 via svnmerge from by Georg Brandl · 15 years ago
  22. 961e6fd Fix gratuitous indentation. by Georg Brandl · 15 years ago
  23. de535cb Improve documentation for getaddrinfo() (part of #8857) by Antoine Pitrou · 15 years ago
  24. 5d864c8 Fix typo by Andrew M. Kuchling · 15 years ago
  25. adbcf1f Patch from Tim Hatch: Make socket setblocking <-> settimeout examples symmetric. by Georg Brandl · 15 years ago
  26. 9bfb78d Patch from Tim Hatch: Better cross-referencing in socket and winreg docs. by Georg Brandl · 15 years ago
  27. abe448c #8320: document return value of recv_into(). by Georg Brandl · 15 years ago
  28. 9d32521 issue3972: HTTPConnection and HTTPSConnection now support a by Gregory P. Smith · 16 years ago
  29. 79a3eb1 Adds an optional source_address parameter to socket.create_connection(). by Gregory P. Smith · 16 years ago
  30. 062d2b5 #7388: "python".capitalize() in the Doc by Ezio Melotti · 16 years ago
  31. f3d520c #6591: add reference to ioctl in fcntl module for platforms other than Windows. by Georg Brandl · 16 years ago
  32. 388637d Remove last remnants of the ipaddr package. by Amaury Forgeot d'Arc · 16 years ago
  33. 5000b3b #6175: document that inet_aton supports alternate input formats with less than three dots. by Georg Brandl · 16 years ago
  34. e3a3726 #5916, 5917: small socket doc improvements. by Georg Brandl · 16 years ago
  35. 8367bec Clarify socket timeout behavior vs system network stack behavior on connect by Gregory P. Smith · 16 years ago
  36. 7044b11 Remove tabs from the documentation. by Georg Brandl · 17 years ago
  37. c62ef8b Remove trailing whitespace. by Georg Brandl · 17 years ago
  38. accb38c clarify by splitting into multiple paragraphs by Benjamin Peterson · 17 years ago
  39. 8798c90 Improve wording by Andrew M. Kuchling · 17 years ago
  40. 4f1b1ed Fixed the semantic of timeout for socket.create_connection and by Facundo Batista · 17 years ago
  41. e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago
  42. d192c92 Updated all import statements to use the new socketserver module name. by Alexandre Vassalotti · 17 years ago
  43. a36909e Fix typo. by Georg Brandl · 17 years ago
  44. d809603 #2742: ``''`` is not converted to NULL in getaddrinfo. by Georg Brandl · 17 years ago
  45. 98fd036 #2752: fix second example too. by Georg Brandl · 17 years ago
  46. 08c7218 #2752: wrong meaning of '' for socket host. by Georg Brandl · 17 years ago
  47. 907a720 A lot more typo fixes by Ori Avtalion. by Georg Brandl · 17 years ago
  48. 2a5d1c3 Update IPv6 RFC number. by Georg Brandl · 18 years ago
  49. 95f17bb Markup fix by Andrew M. Kuchling · 18 years ago
  50. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 18 years ago
  51. 2fa2f5d Revert socket.rst to unix-eol. by Georg Brandl · 18 years ago
  52. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 18 years ago
  53. b19be57 Some cleanup in the docs. by Georg Brandl · 18 years ago
  54. e9fef69 Change socket.error to inherit from IOError rather than being a stand by Gregory P. Smith · 18 years ago
  55. 364b841 Wording change by Andrew M. Kuchling · 18 years ago
  56. 8ee23bb Patch 10124 by Bill Janssen, docs for the new ssl code. by Guido van Rossum · 18 years ago
  57. 4f2c3dd Server-side SSL and certificate validation, by Bill Janssen. by Guido van Rossum · 18 years ago
  58. 4ad9b82 Bug #1752332: httplib no longer uses socket.getaddrinfo(). by Georg Brandl · 18 years ago
  59. 8ec7f65 Move the 2.6 reST doc tree in place. by Georg Brandl · 18 years ago