1. 2ac3bab bpo-37345: Add formal UDPLITE support (GH-14258) by Gabe Appleton · 6 years ago
  2. 8f96c9f bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameindex() on Windows (GH-13522) by Zackery Spytz · 6 years ago
  3. 1b05aa2 Fix typo in docs for socket.CAN_RAW_FD_FRAMES (GH-13635) by karl ding · 6 years ago
  4. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
  5. 3993ccb bpo-20582: add link for manpage for flags on getnameinfo() (GH-11977) by Emmanuel Arias · 6 years ago
  6. 8702b67 BPO-17561: set create_server backlog default to None (GH-12735) by Giampaolo Rodola · 6 years ago
  7. eb7e29f bpo-35934: Add socket.create_server() utility function (GH-11784) by Giampaolo Rodola · 6 years ago
  8. 2d6097d bpo-11233: Create availability directive for documentation (GH-9692) by Cheryl Sabella · 7 years ago
  9. f55c64c bpo-31425: fix versionadded in docs and add attribution in NEWS (GH-9595) by Tal Einat · 7 years ago
  10. bb81651 bpo-31425: Expose AF_QIPCRTR in socket module (GH-3706) by Bjorn Andersson · 7 years ago
  11. 731ff68 closes bpo-25041: Document AF_PACKET socket address format. (GH-4092) by Cheryl Sabella · 7 years ago
  12. 95dfb9c bpo-33921: Clarify how to bind to all interfaces using socket (GH-7877) by johnthagen · 7 years ago
  13. 19e7d48 bpo-32394: Remove some TCP options on old version Windows. (GH-5523) by animalize · 7 years ago
  14. 7766b96 bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449) by Коренберг Марк · 7 years ago
  15. b6e43af bpo-28134: Auto-detect socket values from file descriptor (#1349) by Christian Heimes · 8 years ago
  16. f11b460 bpo-32373: Add socket.getblocking() method. (#4926) by Yury Selivanov · 8 years ago
  17. 0ceb717 Revert "bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)" (#5394) by Yury Selivanov · 8 years ago
  18. 47c0b1f bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724) by Коренберг Марк · 8 years ago
  19. d0e31b9 bpo-32454: socket closefd (#5048) by Christian Heimes · 8 years ago
  20. 9818142 bpo-32331: Fix socket.type when SOCK_NONBLOCK is available (#4877) by Yury Selivanov · 8 years ago
  21. effc12f bpo-27584: New addition of vSockets to the python socket module (#2489) by caavery · 8 years ago
  22. a30f6d4 bpo-30987 - Support for ISO-TP protocol in SocketCAN (#2956) by Pier-Yves Lessard · 8 years ago
  23. 1e2147b bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) by Nathaniel J. Smith · 8 years ago
  24. 0e83045 Merge 3.6 by Victor Stinner · 9 years ago
  25. 01f5ae7 Issue #26273: Document TCP_USER_TIMEOUT and TCP_CONGESTION by Victor Stinner · 9 years ago
  26. 446a498 Merge doc fixes from 3.6 by Martin Panter · 9 years ago
  27. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 9 years ago
  28. 8f13783 Avoid line breaks after hyphens, otherwise they are turned into spaces by Martin Panter · 9 years ago
  29. 853ec5d Issue #21818: Fixed references to classes that have names matching with module by Serhiy Storchaka · 9 years ago
  30. b6a6b45 Issue #21818: Fixed references to classes that have names matching with module by Serhiy Storchaka · 9 years ago
  31. ee1b01a Issue #21818: Fixed references to classes that have names matching with module by Serhiy Storchaka · 9 years ago
  32. c2e9983 Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
  33. 989db5c Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 9 years ago
  34. 6a7d348 Issue #28332: Deprecated silent truncations in socket.htons and socket.ntohs. by Serhiy Storchaka · 9 years ago
  35. 6b46ec7 #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. by R David Murray · 9 years ago
  36. 2195d53 Merge: #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. by R David Murray · 9 years ago
  37. 8c21ab0 Issue #27744: correct comment and markup by Christian Heimes · 9 years ago
  38. dffa394 Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module. by Christian Heimes · 9 years ago
  39. bdfa0eb #26907: add some missing getsockopt constants. by R David Murray · 9 years ago
  40. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 9 years ago
  41. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 9 years ago
  42. ea93ac0 Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes. by Steve Dower · 9 years ago
  43. 4da945f Merge Issue #22558. by Terry Jan Reedy · 9 years ago
  44. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 9 years ago
  45. c79b06c Issue #19234: Merge from 3.5 by Kushal Das · 9 years ago
  46. 89beb27 Issue #19234: Documents socket.fileno() returns -1 on failure by Kushal Das · 9 years ago
  47. a497774 Issue #24911: Merge socket context manager doc from 3.5 by Martin Panter · 9 years ago
  48. e37fc18 Issue #24911: All socket objects are context managers; update examples by Martin Panter · 9 years ago
  49. 50ab1a3 Issue #26685: Raise OSError if closing a socket fails by Martin Panter · 9 years ago
  50. 5d94134 Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch. by Georg Brandl · 9 years ago
  51. 8c16cb9 Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. by Georg Brandl · 9 years ago
  52. 3fe64d0 Issue #16915: Clarify that mode parameter of socket.makefile() does not accept by Berker Peksag · 9 years ago
  53. 253739d Fix a markup error in socket.rst by Berker Peksag · 10 years ago
  54. 744fdfb Issue #5626: Remove misleading comment from socket.gethostname() documentation by Berker Peksag · 10 years ago
  55. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 10 years ago
  56. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 10 years ago
  57. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 10 years ago
  58. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 10 years ago
  59. ce88d82 Issue #16802: Document fileno parameter of socket.socket() by Berker Peksag · 10 years ago
  60. 24a6109 Issue #16802: Document fileno parameter of socket.socket() by Berker Peksag · 10 years ago
  61. ba11252 Issue #25043: Merge Bluetooth doc from 3.4 into 3.5 by Martin Panter · 10 years ago
  62. ea7266d Issue #25043: Document BDADDR_ and HCI_ Bluetooth socket constants by Martin Panter · 10 years ago
  63. daabed5 Issue #24984: Merge BTPROTO_SCO doc fix from 3.4 into 3.5 by Martin Panter · 10 years ago
  64. d830262 Issue #24984: BTPROTO_SCO supports only bytes objects by Martin Panter · 10 years ago
  65. 24a9bd0 Issue #24984: Merge 3.4 into 3.5 by Martin Panter · 10 years ago
  66. d1a9858 Issue #24984: Document AF_BLUETOOTH socket address formats by Martin Panter · 10 years ago
  67. b4760ef Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple documentation typos. by Senthil Kumaran · 10 years ago
  68. fa1b47c Issue #24357: merge from 3.4 by Ned Deily · 10 years ago
  69. 11cf4f6 Issue #24357: use example.org instead by Ned Deily · 10 years ago
  70. 03c28fa Issue #24357: merge from 3.4 by Ned Deily · 10 years ago
  71. 834f029 Issue #24357: fix real typo by Ned Deily · 10 years ago
  72. 36a6a6b Issue #24357: merge from 3.4 by Ned Deily · 10 years ago
  73. 9e2dc3f Issue #24357: fix typo by Ned Deily · 10 years ago
  74. 3e4f976 Issue #24357: merge from 3.4 by Ned Deily · 10 years ago
  75. 1b79e2d Issue #24357: Change host in socket.getaddrinfo example to one that by Ned Deily · 10 years ago
  76. 5f120fc Issue #24233: Add a proper link to socket.getfqdn() documentation. by Berker Peksag · 10 years ago
  77. 2a8baed Issue #24233: Add a proper link to socket.getfqdn() documentation. by Berker Peksag · 10 years ago
  78. a6cc551 Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. by Larry Hastings · 10 years ago
  79. 8912d14 Issue #23853: socket.socket.sendall() does no more reset the socket timeout by Victor Stinner · 10 years ago
  80. 81c41db Issue #23618: socket.socket.connect() now waits until the connection completes by Victor Stinner · 10 years ago
  81. 708d9ba Issue #23618: Document EINTR changes in socket documentation by Victor Stinner · 10 years ago
  82. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 10 years ago
  83. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 11 years ago
  84. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 11 years ago
  85. 95517e4 merge with 3.4 by Georg Brandl · 11 years ago
  86. 2b07b0e Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for getaddrinfo() proto param by Georg Brandl · 11 years ago
  87. 96d8368 merge with 3.4 by Georg Brandl · 11 years ago
  88. c943e79 Remove duplicate bullet point. by Georg Brandl · 11 years ago
  89. 41d3196 Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are SocketKind by Ethan Furman · 11 years ago
  90. 7184bac Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are SocketKind by Ethan Furman · 11 years ago
  91. 98c745a Issue #18643: Add socket.socketpair() on Windows. by Charles-François Natali · 11 years ago
  92. 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' · 11 years ago
  93. 644b8f5 Issue #21455: Add a default backlog to socket.listen(). by Charles-François Natali · 11 years ago
  94. 8b852f1 Fix Issue #21528 - Fix documentation typos by Donald Stufft · 11 years ago
  95. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 11 years ago
  96. abdc16e Merge 3.3 (#16805) by Éric Araujo · 11 years ago
  97. fa5e6e4 Fix note markup (#16805). by Éric Araujo · 11 years ago
  98. 6c50101 whatsnew: inet_pton/inet_ntop support windows (#7171). by R David Murray · 11 years ago
  99. 98f2bbf #16135: remove mentions of OS/2 from the documentation by Andrew Kuchling · 11 years ago
  100. ac6e578 Merge from 3.3 by Andrew Kuchling · 11 years ago