1. 6c76528 Fix Issue9753: socket.dup() does not always work right on Windows by Daniel Stutzbach · 14 years ago
  2. 112c0f3 Issue #1027206: getnameinfo is now restricted to numeric addresses as input. by Martin v. Löwis · 14 years ago
  3. fc0275a Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and by Martin v. Löwis · 14 years ago
  4. 19467d2 Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t". by Antoine Pitrou · 14 years ago
  5. ccfb91c fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments. by Giampaolo Rodolà · 14 years ago
  6. 6e451df Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() by Antoine Pitrou · 14 years ago
  7. e43f9d0 Issue #8524: Add a forget() method to socket objects, so as to put the by Antoine Pitrou · 14 years ago
  8. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  9. bf04349 Merged revisions 80610 via svnmerge from by Antoine Pitrou · 14 years ago
  10. f0f3795 - Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is by Larry Hastings · 14 years ago
  11. b6375f1 Merged revisions 77970 via svnmerge from by Antoine Pitrou · 14 years ago
  12. b585a0f Merge the trivial portion of r74426 from trunk. by Gregory P. Smith · 15 years ago
  13. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  14. 847ec75 http://bugs.python.org/issue6971 Porting revision 75054 from trunk by Kristján Valur Jónsson · 15 years ago
  15. 81c447f turn this into a macro by Benjamin Peterson · 15 years ago
  16. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  17. 32d68c2 Merged revisions 70849,70852 via svnmerge from by Jesse Noller · 15 years ago
  18. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  19. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 15 years ago
  20. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  21. 058e31e Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from by Benjamin Peterson · 16 years ago
  22. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  23. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  24. 3d17a5c Merged revisions 64214 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  25. 762681b Slowly apply part of #2065: py3k can be compiled with VS8.0 by Amaury Forgeot d'Arc · 16 years ago
  26. b9e8dcf Add missing NULL return value. by Martin v. Löwis · 16 years ago
  27. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  28. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  29. ada8c3b Merged revisions 61520,61523-61528,61532 via svnmerge from by Christian Heimes · 16 years ago
  30. bbffeb6 Merged revisions 60210-60233 via svnmerge from by Christian Heimes · 17 years ago
  31. fdab48e Merged revisions 60094-60123 via svnmerge from by Christian Heimes · 17 years ago
  32. d32ed6f Merged revisions 59933-59951 via svnmerge from by Christian Heimes · 17 years ago
  33. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  34. 043d6f6 Copied doc for reload() from trunk's function.rst to imp.rst by Christian Heimes · 17 years ago
  35. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  36. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  37. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  38. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  39. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  40. 8a392d7 Convert the socket module to insist on bytes for input, and to return bytes by Guido van Rossum · 17 years ago
  41. 96e7b3d The patch from weck does a better job than my original idea. Thanks! by Christian Heimes · 17 years ago
  42. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  43. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  44. b615069 Fix for VS 2008 by Christian Heimes · 17 years ago
  45. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  46. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  47. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  48. e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 17 years ago
  49. e405037 Fix typo in comment by Kurt B. Kaiser · 17 years ago
  50. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  51. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  52. 32c4ac0 Down with str8! Change various socket APIs to use bytes or str instead str8. by Guido van Rossum · 17 years ago
  53. 9ce8e38 Fix two bugs in socket_getaddr(): by Guido van Rossum · 17 years ago
  54. c2de7c0 Get rid of a bogus assert when recv_into() is called with a zero-length by Guido van Rossum · 17 years ago
  55. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  56. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  57. 0bbd8ab Simplify os_init() implementations by using PyErr_Format() by Walter Dörwald · 17 years ago
  58. 9cb0802 Remove unused variable. by Walter Dörwald · 17 years ago
  59. a7eb93e Simplify socket_repr() by using PyUnicode_FromFormat() by Walter Dörwald · 17 years ago
  60. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  61. b5b2270 Make test_socket pass. There was an unchecked error when a Unicode by Guido van Rossum · 17 years ago
  62. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  63. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  64. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  65. 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 18 years ago
  66. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  67. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  68. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  69. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  70. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  71. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  72. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  73. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  74. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  75. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  76. 668a94a NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older Linux by Guido van Rossum · 18 years ago
  77. dbd8339 Bug #854823: socketmodule now builds on Sun platforms even when by Georg Brandl · 18 years ago
  78. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 18 years ago
  79. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 18 years ago
  80. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  81. 6585166 Get socketmodule to build after adding netlink support. by Neal Norwitz · 19 years ago
  82. d056005 Change build format of netlink addresses. by Martin v. Löwis · 19 years ago
  83. 11017b1 Patch #1103116: AF_NETLINK sockets basic support. by Martin v. Löwis · 19 years ago
  84. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  85. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  86. 9ceebd5 Patch #1288833: Removed thread lock from socket.getaddrinfo on by Hye-Shik Chang · 19 years ago
  87. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  88. d2e3ba7 patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows by Georg Brandl · 19 years ago
  89. 80961f3 Fix apparently trivial buffer overflow (SF bug 1060396). by Jeremy Hylton · 20 years ago
  90. 3079391 Just remove the #include of signal.h. That it was C++-commented out by Michael W. Hudson · 20 years ago
  91. f7c8d93 Use C89 style comment for old compilers by Neal Norwitz · 20 years ago
  92. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  93. 87de0ca Silence a compiler warning by supplying the correct argument type to by Raymond Hettinger · 20 years ago
  94. 8ea5bdf Patch for compilation on IRIX from rwgk on http://python.org/sf/728330 by Trent Mick · 20 years ago
  95. a708d6e Apply patch from http://python.org/sf/728330 to fix socket module compilation on Solaris 2.6, HP-UX 11, AIX 5.1 and (possibly) some IRIX versions. by Trent Mick · 20 years ago
  96. e8bbfe4 Patch #1015012. Improve markup and punctuation in libsocket.tex by Dave Cole · 20 years ago
  97. b92b7ed Back out 1.289, which breaks platforms needing addrinfo.h, and by Martin v. Löwis · 20 years ago
  98. 07fda7e Updated the socketpair() docstring and documentation to explain that the by Dave Cole · 20 years ago
  99. 0fc8575 Removed unnecessary calls to signal() to ignore SIGPIPE. SIGPIPE is ignored by Dave Cole · 20 years ago
  100. c246cb7 Bug #1001857: socketmodule does not build under cygwin by Jason Tishler · 20 years ago