1. 12e3c71 The other half of the patches added to SF patch 555085 by A I by Guido van Rossum · 22 years ago
  2. 22a9715 Clean up some docstrings. Some docstrings didn't show their return by Guido van Rossum · 22 years ago
  3. 5814187 internal_connect(): Windows. When sock_timeout > 0 and connect() yields by Tim Peters · 22 years ago
  4. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  5. ddc6f47 Pass length of result structure into setipaddr. Fixes bug #565747. by Martin v. Löwis · 22 years ago
  6. 825e47b Put checks for error returns in the right place. by Jeremy Hylton · 22 years ago
  7. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  8. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  9. ad65490 Bail out early from internal_select() when socket file descriptor by Guido van Rossum · 22 years ago
  10. a12b4cf A Python float is a C double; redeclare defaulttimeout as such; stops by Tim Peters · 22 years ago
  11. 1693ba8 Silence warning about getdefaulttimeout in PyMethodDef. by Guido van Rossum · 22 years ago
  12. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  13. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  14. 84262fb Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo(). by Jack Jansen · 22 years ago
  15. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  16. 7b8bac1 Fix non-blocking connect() for Windows. Refactored the code by Guido van Rossum · 22 years ago
  17. 11ba094 Major overhaul of timeout sockets: by Guido van Rossum · 22 years ago
  18. 7aec4a2 work around name clash with OS/2 TCPIP routine sock_init() by Andrew MacIntyre · 22 years ago
  19. 1790e65 Move the conex_finally label up, so that the errno value is always returned. by Guido van Rossum · 22 years ago
  20. e8008f0 I decided to change the interaction between setblocking() and by Guido van Rossum · 22 years ago
  21. c4fcfa3 Major cleanup. Renamed static methods to avoid Py prefix. Other misc by Guido van Rossum · 22 years ago
  22. 3eede5a Whitespace normalization, folding long lines, uniform comment by Guido van Rossum · 22 years ago
  23. b9e916a Correct several blunders in the timeout code, mostly my own fault (for by Guido van Rossum · 22 years ago
  24. 67f7a38 SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  25. c9a5577 The insint() function is not used. Nuke it. by Guido van Rossum · 22 years ago
  26. e1c478f The tp_new implementation should initialize the errorhandler field, by Guido van Rossum · 22 years ago
  27. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  28. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  29. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  30. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  31. 7e78acb Remove last occurrance of PyArg_GetInt. It is deprecated, by Neal Norwitz · 22 years ago
  32. 6d8898b Due to interaction between the MSL C library and the GUSI I/O library I can get reads from sockets to work consistently either for unbuffered binary files or for buffered binary files, but not for both:-( by Jack Jansen · 22 years ago
  33. ba43e87 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  34. 272cb40 Patch #520062: Support IPv6 with VC.NET. by Martin v. Löwis · 22 years ago
  35. 643a7fc Moved the declaration of PySocketSock_Type from socketmodule.h to by Tim Peters · 22 years ago
  36. e6cc5b6 Remove extraneous variable 'total', as reported by James Rucker. by Martin v. Löwis · 22 years ago
  37. 976ade6 Also fix the comment. by Marc-André Lemburg · 22 years ago
  38. bb8b78b Fix the name of the header file. by Marc-André Lemburg · 22 years ago
  39. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 22 years ago
  40. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 22 years ago
  41. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 22 years ago
  42. 3cde2cb Add TCP socket options from glibc 2.2.4. Fixes #495680. 2.2.1 bugfix candidate. by Martin v. Löwis · 23 years ago
  43. 44ddbde Remove INET6 define. Use ENABLE_IPV6 instead. by Martin v. Löwis · 23 years ago
  44. 75cdad5 More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  45. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  46. 3072ecd Fix docstring typo by Andrew M. Kuchling · 23 years ago
  47. fba64e1 Test for negative buffer sizes. Fixes #482871. by Martin v. Löwis · 23 years ago
  48. 03f96bd Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly by Michael W. Hudson · 23 years ago
  49. f0b11d2 Fix memory leaks detecting in bug report #478003. by Martin v. Löwis · 23 years ago
  50. 603c683 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. by Tim Peters · 23 years ago
  51. 06b1d21 Correct getnameinfo refcounting and tuple parsing. Fixes #476648. by Martin v. Löwis · 23 years ago
  52. c32410a PySocketSock_connect_ex(): On Windows, return the correct Windows exit by Tim Peters · 23 years ago
  53. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  54. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  55. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  56. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  57. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  58. b8fc972 Fix typo. Thanks to Jack Jansen for spotting it. by Martin v. Löwis · 23 years ago
  59. 861a65b Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo by Martin v. Löwis · 23 years ago
  60. cad8fa1 (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile by Guido van Rossum · 23 years ago
  61. de80f2e Expose three OpenSSL API calls for dealing with the PRNG. by Jeremy Hylton · 23 years ago
  62. 17209fc Fix a bunch of warnings reported by Skip. by Guido van Rossum · 23 years ago
  63. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 23 years ago
  64. 716aac0 PySocket_getaddrinfo(): fix two refcount bugs, both having to do with by Guido van Rossum · 23 years ago
  65. e2adc6c Use PySocket_Err() instead of PyErr_SetFromErrno(). by Jeremy Hylton · 23 years ago
  66. ba69936 Commit parts of SF patch #462759 by Jeremy Hylton · 23 years ago
  67. ae0013d Convert socket methods to use METH_O and METH_NOARGS where possible. by Jeremy Hylton · 23 years ago
  68. 57ca873 Add a bunch of SSL error constants by Jeremy Hylton · 23 years ago
  69. 5b6ce5a Lots of code reorganization with a few small API changes. by Jeremy Hylton · 23 years ago
  70. 22738b9 Do simple error checking before doing any SSL calls. by Jeremy Hylton · 23 years ago
  71. b0b0bd6 USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject(). by Jeremy Hylton · 23 years ago
  72. ec4b545 In newSSLObject(), initialize the various members of an SSLObject to NULL. by Jeremy Hylton · 23 years ago
  73. ab00645 A bit of reformatting to match the standard style by Jeremy Hylton · 23 years ago
  74. f86d63e Fix two memory leaks in socket.ssl(). by Jeremy Hylton · 23 years ago
  75. 79248aa SF bug [#456252] Python should never stomp on [u]intptr_t. by Tim Peters · 23 years ago
  76. cfb1675 SSL_dealloc(): Apply the change suggested in SF bug #425370 which by Barry Warsaw · 23 years ago
  77. 1ba6bad It will always be a string, because it is created just before this call. by Jeremy Hylton · 23 years ago
  78. f95dd0a Fix portability problems with glibc 2.0, as reported in #449157. by Martin v. Löwis · 23 years ago
  79. f65b1a1 Bump size of sprintf buffer. Suggested by Alex Coventry. by Martin v. Löwis · 23 years ago
  80. 1ba3fd5 Autotest for netpacket/packet.h, as it is not available on all Linux versions. by Martin v. Löwis · 23 years ago
  81. bcf4b35 Add more constants. Contributed by itojun. by Martin v. Löwis · 23 years ago
  82. 864e9ff Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the three by Martin v. Löwis · 23 years ago
  83. ae26dc2 Do not use the system getaddrinfo on Mac OS X. Fixes bug #445928. by Martin v. Löwis · 23 years ago
  84. 03d1b18 Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and by Marc-André Lemburg · 23 years ago
  85. 0b8de98 Temporarily work around bug #445928: Force usage of getaddrinfo emulation by Martin v. Löwis · 23 years ago
  86. 7aeb6ef Use HAVE_SNPRINTF, not HAVE_SPRINTF, for checking the availability of snprintf. by Thomas Wouters · 23 years ago
  87. 791bfda Autocheck for snprintf, and use sprintf if it is not available. by Martin v. Löwis · 23 years ago
  88. fe36fc9 Before declaring h_errno, do not check for Win32 only. Instead, do check by Martin v. Löwis · 23 years ago
  89. 9db2f57 Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access sa_family. by Martin v. Löwis · 23 years ago
  90. 2d8d427 Patch #401196: IPv6 extensions to the socket module. by Martin v. Löwis · 23 years ago
  91. c925b153 Silence warnings in MSVC++: hide unused variables, add constness back to by Martin v. Löwis · 23 years ago
  92. e506529 Clean up some warnings from the SGI compiler. This is part of SF patch #434992. by Fred Drake · 23 years ago
  93. d783041 Port getaddrinfo to MSVC++. by Martin v. Löwis · 23 years ago
  94. 51777ce Remove const-ness in inet_pton declaration. by Martin v. Löwis · 23 years ago
  95. a2ca1ae Fix typos in inet_pton/inet_ntop. by Martin v. Löwis · 23 years ago
  96. a45ecae Provide a definition for offsetof. by Martin v. Löwis · 23 years ago
  97. b9ab159 Emulate inet_{pton,ntop} on systems that don't provide it. by Martin v. Löwis · 23 years ago
  98. 7e82b9c Pure brute-force hackery to allow Python to build on Windows again, by Tim Peters · 23 years ago
  99. 01dfdb3 Patch #401196: Configuration machinery for IPv6. by Martin v. Löwis · 23 years ago
  100. 564a6cc Fix a minor style consistency issue. by Fred Drake · 23 years ago