1. c1d0936 Merged revisions 72662 via svnmerge from by Antoine Pitrou · 15 years ago
  2. fb5faf0 Issue #1210: Fixed imaplib Patch by Victor Stinner, reviewed by Barry Warsaw. by Christian Heimes · 16 years ago
  3. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  4. d3eb5a15 Merged revisions 61003-61033 via svnmerge from by Christian Heimes · 16 years ago
  5. a771209 fix bug 1482: IMAP4 SSL isn't working by Bill Janssen · 16 years ago
  6. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  7. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  8. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  9. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  10. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  11. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  12. be5615e updated __version__ by Piers Lauder · 19 years ago
  13. 14f3940 changed select() so readonly flag is treated as a boolean by Piers Lauder · 19 years ago
  14. 2dfc168 fixed tag generation to avoid null tags by Piers Lauder · 19 years ago
  15. d80ef02 added GET/SETANNOTATION methods by Piers Lauder · 19 years ago
  16. 8659d90 Fix bug in InternalDate regexp that failed to allow leading 0 in day - courtesy of Rimon Barr <rimon.barr@cornell.edu> by Piers Lauder · 19 years ago
  17. c09acfd Fix bug in _checkquote that raised an exception on empty "arg". by Piers Lauder · 20 years ago
  18. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  19. 6a4e635 Fix typo in getquotaroot parameter reported by Thierry FLORAC. Also amplify doc string for select to indicate proper way to obtain other responses. by Piers Lauder · 20 years ago
  20. 7b9190b Patch #998149: imaplib deleteacl and myrights. by Martin v. Löwis · 20 years ago
  21. 0659452 Added IMAP4_stream to __all__ by Piers Lauder · 20 years ago
  22. c1e32b6 Fixed IMAP4_SSL read bug introduced by patch 956394 by Piers Lauder · 20 years ago
  23. 8f2b244 Fixed IMAP4_SSL read and readlines code per patch 956394 by Piers Lauder · 20 years ago
  24. f167dc3 fix name in setacl method doc string by Piers Lauder · 20 years ago
  25. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  26. d892137 Patch #798297: Add IMAP THREAD command. by Martin v. Löwis · 21 years ago
  27. b207170 Comment out cap, it was unused. Should all the commented out code be removed? by Neal Norwitz · 21 years ago
  28. 533366b improved CRLF regex for previous fix by Piers Lauder · 21 years ago
  29. 47404ff added code to canonicalise line endings in data sent via "append" - fix for bug report 723962 by Piers Lauder · 21 years ago
  30. 3ae0f7a Replace criterium with criterion. Fixes #705120. by Martin v. Löwis · 21 years ago
  31. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  32. 41b71b2 Fix NameError in getquotaroot(), sanctioned by Piers. by Guido van Rossum · 22 years ago
  33. 77c06fb Whitespace normalization. by Tim Peters · 22 years ago
  34. e0273de added new IMAP4_stream class; added proxyauth command; added login_cram_md5 method by Piers Lauder · 22 years ago
  35. d8ea2e0 Added missing class to __all__. by Raymond Hettinger · 22 years ago
  36. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  37. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 22 years ago
  38. 17031bf fix incorrect size calc. in IMAP4_SSL.read by Piers Lauder · 22 years ago
  39. 0c09293 Fix IMAP4_SSL read and send methods to take account of short data by Piers Lauder · 22 years ago
  40. 1ed564a Whitespace normalization (tabs -> spaces) by Neal Norwitz · 22 years ago
  41. 3fca291 Add IMAP4 QUOTA extension methods by Piers Lauder · 22 years ago
  42. f97b2d7 open method changed to use arguments and set instance host/port values (instead of __init__) by Piers Lauder · 22 years ago
  43. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  44. 936654b Replaced boolean test with is None by Raymond Hettinger · 22 years ago
  45. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  46. 95f8495 fixed missing IMAP4_SSL_PORT by Piers Lauder · 22 years ago
  47. a4f8313 add SSL class submitted by Tino Lange by Piers Lauder · 22 years ago
  48. f2d7d15 moved command logging routines into IMAP4 class: thread safe/faster by Piers Lauder · 22 years ago
  49. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 22 years ago
  50. db51920 Time2Internaldate(): Call isinstance() once for each of the type tests by Fred Drake · 23 years ago
  51. ea752fb Check for time.struct_time in addition to tuples. Use 3 characters by Martin v. Löwis · 23 years ago
  52. 1633a2e Whitespace normalization. by Tim Peters · 23 years ago
  53. d6bebce Make tabnanny happy. (Piers, please run the test suite before by Guido van Rossum · 23 years ago
  54. fe6accf update version number by Piers Lauder · 23 years ago
  55. 0402dd1 fix send method not noticing when partial sends happen by Piers Lauder · 23 years ago
  56. c0f1bfe SF bug #469910 by Alfonso Baciero: Bugfix for imaplib for macintosh by Guido van Rossum · 23 years ago
  57. a79bbac Remove redundant 'import sys' (PyChecker). by Guido van Rossum · 23 years ago
  58. e02f904 fix for Bug ID 448100 - "test code using NL instead of CRNL" by Piers Lauder · 23 years ago
  59. 87cc0c3 Whitespace normalization, plus: by Tim Peters · 23 years ago
  60. 15e5d53 apply patch item #416253 by Piers Lauder · 23 years ago
  61. 34d9705 fix missed conversion in ESR's string conversion by Piers Lauder · 23 years ago
  62. ff0a2bb Somebody checked this in w/ an ambiguous tab/space mix (reported by Mark Favas). by Tim Peters · 23 years ago
  63. a85e2c8 SF patch #433619, by Michel Pelletier: by Guido van Rossum · 23 years ago
  64. f5d3ea0 Fix previous checkin, hopelessly broken as it was; reported by Detlef Lannert. by Jeremy Hylton · 23 years ago
  65. 3a9a96c replace exec with simple assignments by Jeremy Hylton · 23 years ago
  66. 25a0cbc String method conversion. by Eric S. Raymond · 23 years ago
  67. f449391 __all__: removed "error", "abort", "readonly", as these are not by Barry Warsaw · 23 years ago
  68. 2dd4276 added a few more __all__ lists fixed typo in ihooks docstring by Skip Montanaro · 23 years ago
  69. 07e99cb Whitespace normalization. by Tim Peters · 24 years ago
  70. fd267d9 Piers Lauder <piers@cs.su.oz.au>: by Fred Drake · 24 years ago
  71. 93a7c0f Fredrik Lundh: by Guido van Rossum · 24 years ago
  72. 66d4513 Piers Lauder: by Guido van Rossum · 24 years ago
  73. 619c337 Patch by Piers Lauder, who writes: by Guido van Rossum · 24 years ago
  74. 98d9fd3 Simple changes by Gerrit Holl - move author acknowledgements out of by Guido van Rossum · 24 years ago
  75. 19ce91b Piers Lauder: by Guido van Rossum · 24 years ago
  76. f36b182 Patches by Piers Lauder. by Guido van Rossum · 24 years ago
  77. 8c06221 V 2.16 from Piers: by Guido van Rossum · 25 years ago
  78. 04da10c Piers Lauder writes: by Guido van Rossum · 26 years ago
  79. 26367a0 New version from Piers Lauder, who writes: by Guido van Rossum · 26 years ago
  80. b1f0812 Piers' latest version, labeled 2.11. This time he integrated my by Guido van Rossum · 26 years ago
  81. eda960a Piers' latest version -- authentication added by Donn Cave. by Guido van Rossum · 26 years ago
  82. d659693 Improve the self-test code a bit: read a host from sys.argv[1] if set, by Guido van Rossum · 26 years ago
  83. 6884af7 Piers Lauders' latest version, with some of my own changes reapplied. by Guido van Rossum · 26 years ago
  84. b26a1b4 Use random instead of whrandom. by Guido van Rossum · 26 years ago
  85. 4658682 Subject: bug fixes for imaplib.py by Guido van Rossum · 26 years ago
  86. a986bb7 Take out the check for AUTH-LOGIN or AUTH=LOGIN in login() -- some by Guido van Rossum · 26 years ago
  87. be14e69 New revision -- sometimes it's AUTH-LOGIN, sometimes AUTH=LOGIN! by Guido van Rossum · 26 years ago
  88. 38d8f4e New version doesn't require REV1 capability. by Guido van Rossum · 26 years ago
  89. eeec0af Piers' new version (but I unfolded a few doc strings). by Guido van Rossum · 26 years ago
  90. c2c07fa Piers Lauder's IMAP module. by Guido van Rossum · 26 years ago