1. 07fda7e Updated the socketpair() docstring and documentation to explain that the by Dave Cole · 20 years ago
  2. 9dc19c2 Ooops - for some reason I had the wrong versionadded... by Dave Cole · 20 years ago
  3. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  4. 11b91a0 Added socket.getservbyport(), and make its second argument and that of by Barry Warsaw · 20 years ago
  5. 175d188 avoid backticks in examples; use repr() instead by Fred Drake · 20 years ago
  6. cee8879 note that the error code for socket.gaierror will be one of the EAI_* by Fred Drake · 20 years ago
  7. ba813e2 #928751, fix typos in socket doc by Neal Norwitz · 20 years ago
  8. fcc5176 update signature of the socket constructor by Fred Drake · 20 years ago
  9. 5a92175 After hearing from someone who gave up on timeout sockets due to a by Guido van Rossum · 21 years ago
  10. 94681fc Patch #849595: Add socket.shutdown() constants. by Martin v. Löwis · 21 years ago
  11. b278ac4 Add note about fileno not being usable as a normal file descriptor in Windows. by Brett Cannon · 21 years ago
  12. 476fcae SF bug #774411: Typo in socket documentation by Raymond Hettinger · 21 years ago
  13. be2528d SF patch #760257: add socket.timeout exception (Contributed by Bob Halley) by Raymond Hettinger · 21 years ago
  14. 3a03de4 SF #757229, fix libsocket.tex typo by Neal Norwitz · 21 years ago
  15. d198f38 - add availability statements for some of the new APIs - lots of general cleanup by Fred Drake · 21 years ago
  16. b016752 Fix a copy-paste error: the paragraph about inet_ntop's use was copied by Guido van Rossum · 21 years ago
  17. 6eb502f Add versionadded for has_ipv6 attribute by Neal Norwitz · 21 years ago
  18. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 21 years ago
  19. 2a403e8 add descriptions of {get,set}defaulttimeout. by Skip Montanaro · 21 years ago
  20. 11ba094 Major overhaul of timeout sockets: by Guido van Rossum · 22 years ago
  21. 715b861 Clarify the interaction between timeout/non-blocking mode, makefile and fromfd. by Guido van Rossum · 22 years ago
  22. 62a7f63 Fix typo by Neal Norwitz · 22 years ago
  23. fc9823b Clarify the interaction between blocking and timeouts. Explain that by Guido van Rossum · 22 years ago
  24. bdbd84f Add version info, and fix another typo and wording spotted by /F. I think this is what he meant. :-) by Neal Norwitz · 22 years ago
  25. 1a06fb0 Fix typo spotted by Fredrik Lundh. by Fred Drake · 22 years ago
  26. 6c6d662 Fix some markup errors and adjust wording slightly. by Fred Drake · 22 years ago
  27. be946bf SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  28. 39960f6 Fix the erroneous availability annotation for s.makefile() from the last by Fred Drake · 23 years ago
  29. 87fa3aa Add notes that fromfd() and s.makefile() are Unix-specific. by Fred Drake · 23 years ago
  30. 39368c1 Added documentation of the sendall() method, and a note to the send() method by Fred Drake · 23 years ago
  31. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  32. aad8bb5 When stating that some parameters to makefile() are similar to the open() by Fred Drake · 23 years ago
  33. cb43c08 Document that keyfile and certfile are now optional. by Jeremy Hylton · 23 years ago
  34. 3fc291a Fix some markup errors. by Fred Drake · 23 years ago
  35. 9081bb1 Added documentation for the SSL interface, contributed by Gerhard Häring. by Fred Drake · 23 years ago
  36. c9908c4 Document IPv6 changes. Contributed by itojun. by Martin v. Löwis · 23 years ago
  37. 8321026 SourceForge patch #103140, checked in at fdrake's invitation. Minor fixes and by Eric S. Raymond · 24 years ago
  38. ef52f60 Revise the examples not to use the "from socket import *", and adjust by Fred Drake · 24 years ago
  39. 8b2e8f8 Added a \versionadded statement to the getfqdn() description. by Fred Drake · 24 years ago
  40. 5772c86 Document socket.getfqdn(). by Fred Drake · 24 years ago
  41. caa658d Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the by Thomas Wouters · 24 years ago
  42. aa7524c Clean up markup to be more like recommended practice; only small changes needed. by Fred Drake · 24 years ago
  43. 9a748aa Say "manual page", not "man page", when referring to the Unix manual. by Fred Drake · 24 years ago
  44. 3d69c0e Someone found the examples of poor practice on socket addresses! by Fred Drake · 24 years ago
  45. 7d68690 Added notes about the eventual disappearance of two-parameter bind(), by Fred Drake · 24 years ago
  46. 38e5d27 Merged changes from the 1.5.2p2 release. (Very rough.) by Fred Drake · 24 years ago
  47. 37f1574 Use \citetitle and \programopt as appropriate. by Fred Drake · 25 years ago
  48. e6fb1c4 Added documentation for inet_aton() and inet_ntoa(), from Ben by Fred Drake · 25 years ago
  49. a94f676 Add index entry "I/O control, buffering" for makefile(). by Fred Drake · 25 years ago
  50. b0bc7f2 Updated connect_ex() documentation based on comments in the newgroup by Fred Drake · 25 years ago
  51. 318c0b1 Logical markup nits. by Fred Drake · 25 years ago
  52. 295da24 New section header style. by Fred Drake · 26 years ago
  53. cdf6af1 Document gethostbyname_ex(). by Guido van Rossum · 26 years ago
  54. b91e934 Adjusted to use the new module synopsis support macros. by Fred Drake · 26 years ago
  55. 3a0351c Remove all uses of \sectcode; we can now use logical markup everywhere. by Fred Drake · 26 years ago
  56. 3f1c472 Use {methoddesc} as appropriate. by Fred Drake · 26 years ago
  57. cce1090 Change "\," to just "," in function signatures. This is easier to maintain, by Fred Drake · 26 years ago
  58. d883ca1 Logical markup. by Fred Drake · 26 years ago
  59. 1947991 Remove all \bcode / \ecode cruft; this is no longer needed. See previous by Fred Drake · 26 years ago
  60. 8e1e68d Add ref to errno module, and change ref to posix.error to os.error. by Guido van Rossum · 26 years ago
  61. 9eb5e50 Consistency: "{\it ...}" ==> "\emph{...}" by Fred Drake · 26 years ago
  62. af8a015 Consistency: "{\bf ...}" ==> "\strong{...}" "{\em ...}" ==> "\emph{...}" by Fred Drake · 27 years ago
  63. eefcba6 Fix a little mess (Likecode{...} -> Like \code{...}) in recently added text. by Guido van Rossum · 27 years ago
  64. c5aec05 Separated the definitions of ntohs(), ntohl(), htons(), htonl(). Separate by Fred Drake · 27 years ago
  65. f7790c6 Document s.connect_ex(), which does not raise an exception on error. by Guido van Rossum · 27 years ago
  66. 5451d67 socket_type ==> SocketType by Fred Drake · 27 years ago
  67. e47da0a AMK's megapatch: by Guido van Rossum · 27 years ago
  68. 2335c5e Added description of socket_type. by Guido van Rossum · 27 years ago
  69. e4f347e Document "" and "<broadcast>". by Guido van Rossum · 27 years ago
  70. fe27a50 Added warning that gethostname() doesn't always return fqdn, and show by Guido van Rossum · 28 years ago
  71. d44be3f very minor typo by Barry Warsaw · 28 years ago
  72. 62ac99e Documented getprotobyname() interface. by Guido van Rossum · 28 years ago
  73. bda7ca7 Added [nh]to[hn][sl](). by Guido van Rossum · 28 years ago
  74. 470be14 mass changes; fix titles; add examples; correct typos; clarifications; by Guido van Rossum · 29 years ago
  75. 6bb1adc small changes by Soren Larsen by Guido van Rossum · 29 years ago
  76. 8675115 a few typographical changes (e.g. -- => ---) and lots of new stuff in the WWW chapter by Guido van Rossum · 29 years ago
  77. 8df3637 changes refs to SO_* symbols by Guido van Rossum · 29 years ago
  78. ed2bad8 added lots of constants by Guido van Rossum · 29 years ago
  79. 31cce97 copyright.tex: Add 1995 to copyright message. by Guido van Rossum · 30 years ago
  80. 9195148 added Tommy Burnette's setblocking() method by Guido van Rossum · 30 years ago
  81. 16d6e71 Lots of small corrections by Andrew Kuchling (plus all new rotor docs) by Guido van Rossum · 30 years ago
  82. 781db5d * Doc/libsocket.tex (subsection{Socket Object Methods}): by Guido van Rossum · 30 years ago
  83. ab3a250 libsocket.tex: send[to] returns nbytes. by Guido van Rossum · 30 years ago
  84. a84ec51 clarify the meaning of address for those methods that or return addresses by Guido van Rossum · 30 years ago
  85. 5da5755 adapt to min value of 1 for listen() backlog argument by Guido van Rossum · 30 years ago
  86. 4290161 s.avail() has met its maker by Guido van Rossum · 31 years ago
  87. 5fdeeea Restructured library documentation by Guido van Rossum · 31 years ago