1. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  2. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  3. c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 17 years ago
  4. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  5. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 17 years ago
  6. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  7. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  8. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  9. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  10. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  11. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  12. bd3bc4d Bug #1430298: It is now possible to send a mail with an empty by Georg Brandl · 18 years ago
  13. 58bd190 SMTP.help() was returning a tuple instead of the promised text. by Kurt B. Kaiser · 19 years ago
  14. dbecd93 Replace list of constants with tuples of constants. by Raymond Hettinger · 19 years ago
  15. 5954623 Patch #1100140: improved smtp connect debugging by Johannes Gijsbers · 19 years ago
  16. 9a98364 Replace rfc822.parseaddr with email.Utils.parseaddr. The implementation is by Johannes Gijsbers · 19 years ago
  17. 25946dd Patch #1075928: AUTH PLAIN in smtplib. by Johannes Gijsbers · 20 years ago
  18. e6f8a89 Debug output is now printed to sys.stderr . by Brett Cannon · 20 years ago
  19. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  20. 49c05d3 Patch #572031: AUTH method LOGIN for smtplib by Martin v. Löwis · 22 years ago
  21. 342456d smptlib did not handle empty addresses. by Raymond Hettinger · 22 years ago
  22. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  23. 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 22 years ago
  24. 385a77a remove o/s dependancy from test by Piers Lauder · 22 years ago
  25. 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 22 years ago
  26. 9ea6c19 Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. by Martin v. Löwis · 22 years ago
  27. f13eb55 Replace boolean test with is None. by Raymond Hettinger · 22 years ago
  28. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  29. 7fdfc2d Replace '== None' with 'is None' by Raymond Hettinger · 22 years ago
  30. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  31. be22ae6 ehlo(): A proper fix for SF bug #498572. RFC 1869 describes ESMTP by Barry Warsaw · 22 years ago
  32. 13e34f7 __init__(): We'll try to be more RFC 2821 compliant by providing for a by Barry Warsaw · 22 years ago
  33. 4b186af SMTP.__init__(): Fixed minor typo in docstring. by Barry Warsaw · 22 years ago
  34. 6730f26 Add local_hostname option to SMTP.__init__. If supplied, it is used by Neil Schemenauer · 22 years ago
  35. 3356766 Accept Unicode strings as SMTP TO addresses. Fixes #521270. 2.2.1 candidate. by Martin v. Löwis · 22 years ago
  36. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 22 years ago
  37. 7675097 send(), ehlo(): Integrate patch #487310 by Fazal Majid. Consistently by Barry Warsaw · 23 years ago
  38. 2f8f4d3 SMTPError should be SMTPException; reported by Neal Norwitz. by Fred Drake · 23 years ago
  39. 322c0d1 Only close sockets if they have been created. Reported by Blake Winton. by Martin v. Löwis · 23 years ago
  40. b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
  41. f7fcf5e SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib by Guido van Rossum · 23 years ago
  42. ae01046 Add login() method and SMTPAuthenticationError exception. SF patch by Guido van Rossum · 23 years ago
  43. 6be424f Remove redundant import by Andrew M. Kuchling · 23 years ago
  44. 2ad2569 Initialize msg to avoid unbound locals. by Martin v. Löwis · 23 years ago
  45. 4eb5940 Untabify IPv6 changes. by Martin v. Löwis · 23 years ago
  46. a43c2f8 Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. by Martin v. Löwis · 23 years ago
  47. 0de6580 bunch more __all__ lists by Skip Montanaro · 23 years ago
  48. 8d87603 Aha. We can remove he string import after all by using ValueError. by Eric S. Raymond · 23 years ago
  49. 38151ed Fixed a bug in the test jig. by Eric S. Raymond · 23 years ago
  50. c013f30 String method conversion. by Eric S. Raymond · 23 years ago
  51. 495ad3c Whitespace normalization. by Tim Peters · 23 years ago
  52. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  53. 17bfef5 SMTP.connect(): If the socket.connect() raises a socket.error, be sure by Barry Warsaw · 24 years ago
  54. 5bf94a0 Applied patch #101350, closing it. by Barry Warsaw · 24 years ago
  55. 0ebc1c6 Use socket.getfqdn() instead of defining make_fqdn(). by Fred Drake · 24 years ago
  56. caa658d Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the by Thomas Wouters · 24 years ago
  57. 7bc82bb add better algorithm to get fully qualified domain name for localhost by Peter Schneider-Kamp · 24 years ago
  58. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  59. a1ae884 Use TQSQ (triple quoted single quote) module docstring for better by Barry Warsaw · 24 years ago
  60. 93a7c0f Fredrik Lundh: by Guido van Rossum · 24 years ago
  61. 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 24 years ago
  62. 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 24 years ago
  63. d25c1b7 A bunch of docstring fixes. by Barry Warsaw · 25 years ago
  64. bda10c8 In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just by Guido van Rossum · 25 years ago
  65. db23d3d Patch by Per Cederqvist: by Guido van Rossum · 25 years ago
  66. 20c9228 Patch by Per Cederqvist, seemingly approved by The Dragon: by Guido van Rossum · 25 years ago
  67. 296e143 Changes by Per Cederquist and The Dragon. by Guido van Rossum · 25 years ago
  68. f123f84 Patch by Per Cederqvist, who writes: by Guido van Rossum · 25 years ago
  69. 40233ea Patch by Piers Lauder: make exceptions classes. by Guido van Rossum · 25 years ago
  70. 348fd06 In rcpt(), avoid a space after the TO: address when the option list is by Guido van Rossum · 25 years ago
  71. 0720177 Small, and final docstring merge with Dragon's version. by Barry Warsaw · 26 years ago
  72. a7d9bdf A few other docstring fixes, most importantly to be a little nicer to Emacs ;-) by Barry Warsaw · 26 years ago
  73. 4c4bec8 Nothing earthshattering, just some fixes to typos and other formatting by Barry Warsaw · 26 years ago
  74. 31bb8ce Change interface to sendmail: if the destination address is a string by Jeremy Hylton · 26 years ago
  75. 2880f6e Untabified and deleted trailing blank lines. by Guido van Rossum · 26 years ago
  76. fcfb632 Latest version by The Dragon, who writes: by Guido van Rossum · 26 years ago
  77. 69a79bc Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) by Guido van Rossum · 26 years ago
  78. 95e6f70 Eric Raymond added support for ESMTP protocol and corrected some typos by Guido van Rossum · 26 years ago
  79. 18586f4 Add optional argument to help(). by Guido van Rossum · 26 years ago
  80. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  81. fc40a83 Sez The Dragon: by Guido van Rossum · 26 years ago
  82. bbe323e SMTP client by The Dragon De Monsyne <dragondm@integral.org>. by Guido van Rossum · 26 years ago