1. 2080dc9 Issue #22932: Fix timezones in email.utils.formatdate. by Robert Collins · 9 years ago
  2. ae760c0 Issue #6598: Increased time precision and random number range in by Serhiy Storchaka · 9 years ago
  3. 9f8a891 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  4. 7d0325d #23745: handle duplicate MIME parameter names in new parser. by R David Murray · 9 years ago
  5. 155ceaa handle headers with no key (closes #19996) by Benjamin Peterson · 10 years ago
  6. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  7. 685b349 #21991: make headerregistry params property MappingProxyType. by R David Murray · 10 years ago
  8. 5294529 Closes #19434: fix copy-paste error in MIMENonMultipart docstring. by Georg Brandl · 10 years ago
  9. 8a97896 #21091: make is_attachment a method. by R David Murray · 10 years ago
  10. 97dfad7 #21079: is_attachment now looks only at the value, ignoring parameters. by R David Murray · 10 years ago
  11. 320a1c0 Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing long line. by Serhiy Storchaka · 10 years ago
  12. d577480 #20977: fix undefined name in the email module. Patch by Rose Ames. by Ezio Melotti · 10 years ago
  13. c6772c4 #21476: Unwrap fp in BytesParser so the file isn't unexpectedly closed. by R David Murray · 10 years ago
  14. e252446 #21300: Clean up the docs for the email "policy" arguments. by R David Murray · 10 years ago
  15. 95a8dfb #20976: remove unneeded quopri import in email.utils. by R David Murray · 10 years ago
  16. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  17. 5dda124 #11558: Better message if attach called on non-multipart. by R David Murray · 10 years ago
  18. 66c3d18 Merge: #14983: always add a line end after a MIME boundary marker. by R David Murray · 10 years ago
  19. e9c3147 #14983: always add a line end after a MIME boundary marker. by R David Murray · 10 years ago
  20. 01e46ee Merge: #16983: Apply postel's law to encoded words inside quoted strings. by R David Murray · 11 years ago
  21. 0400d33 #16983: Apply postel's law to encoded words inside quoted strings. by R David Murray · 11 years ago
  22. ff9616b Merge #19772: Do not mutate message when downcoding to 7bit. by R David Murray · 11 years ago
  23. 905c8c3 #19772: Do not mutate message when downcoding to 7bit. by R David Murray · 11 years ago
  24. c489e83 Merge: #17369: Improve handling of broken RFC2231 values in get_filename. by R David Murray · 11 years ago
  25. 1e94989 #17369: Improve handling of broken RFC2231 values in get_filename. by R David Murray · 11 years ago
  26. feb6852 Merge: #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4. by R David Murray · 11 years ago
  27. fcc0072 #19063: the unicode-in-set_payload problem isn't getting fixed in 3.4. by R David Murray · 11 years ago
  28. 15a693a #20531: Apply the 3.3 version of the #19063 fix. by R David Murray · 11 years ago
  29. 27e9de6 #20531: Revert e20f98a8ed71, the 3.4 version of the #19063 fix. by R David Murray · 11 years ago
  30. aa21297 #20476: use EmailMessage as factory if non-compat32 policy is used. by R David Murray · 11 years ago
  31. 44fcaae Merge #20206, #5803: more efficient algorithm that doesn't truncate output. by R David Murray · 11 years ago
  32. 2313e15 #20206, #5803: more efficient algorithm that doesn't truncate output. by R David Murray · 11 years ago
  33. 775632b #19957: Simplify encode_7or8bit now that _payload is always str. by R David Murray · 11 years ago
  34. 50bfbb9 #19063: fix set_payload handling of non-ASCII string input. by R David Murray · 11 years ago
  35. d5c4c74 #19063: partially fix set_payload handling of non-ASCII string input. by R David Murray · 11 years ago
  36. af73496 Merge #19485: clarify get_param example. by R David Murray · 11 years ago
  37. 0de4d3e #19485: clarify get_param example. by R David Murray · 11 years ago
  38. 3da240f #18891: Complete new provisional email API. by R David Murray · 11 years ago
  39. b8c5370 Merge #18324: set_payload now correctly handles binary input. by R David Murray · 11 years ago
  40. 00ae435 #18324: set_payload now correctly handles binary input. by R David Murray · 11 years ago
  41. 08a1472 Merge typo fixes from 3.3. by Ezio Melotti · 11 years ago
  42. 2af76da Fix a couple of typos. by Ezio Melotti · 11 years ago
  43. bb17d2b #18600: add policy to add_string, and as_bytes and __bytes__ methods. by R David Murray · 11 years ago
  44. 1424e7d Merge: #18437: fix comment typo. by R David Murray · 11 years ago
  45. 037f658 #18437: fix comment typo. by R David Murray · 11 years ago
  46. 1f9d24a Merge: #18431: Decode encoded words in atoms in new email parser. by R David Murray · 11 years ago
  47. 923512f #18431: Decode encoded words in atoms in new email parser. by R David Murray · 11 years ago
  48. 63194a7 Merge: #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?= by R David Murray · 11 years ago
  49. 65171b2 #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?= by R David Murray · 11 years ago
  50. e0a39de #18380: merge with 3.3. by Ezio Melotti · 11 years ago
  51. 2a99d5d #18380: pass regex flags to the right argument. Patch by Valentina Mukhamedzhanova. by Ezio Melotti · 11 years ago
  52. c723da3 Merge #14360: make encoders.encode_quopri work. by R David Murray · 11 years ago
  53. f6069f9 #14360: make encoders.encode_quopri work. by R David Murray · 11 years ago
  54. b83ee30 #11454: Reduce email module load time, improve surrogate check efficiency. by R David Murray · 11 years ago
  55. 765531d Issue #17516: use comment syntax for comments, instead of multiline string by Victor Stinner · 11 years ago
  56. 2fab358 Add missing FeedParser and BytesFeedParser to email.parser.__all__. by R David Murray · 11 years ago
  57. 5efee58 Merge: #17431: Fix missing import of BytesFeedParser in email.parser. by R David Murray · 11 years ago
  58. 8093d6f Merge: #17431: Fix missing import of BytesFeedParser in email.parser. by R David Murray · 11 years ago
  59. 612528d #17431: Fix missing import of BytesFeedParser in email.parser. by R David Murray · 11 years ago
  60. 8b53559 Merge with 3.3, issue #17047: remove doubled words added in 3.3, by Terry Jan Reedy · 11 years ago
  61. 0f84764 Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  62. 857b24b Merge: PEP8 fixup on previous patch, remove unused imports in test_email. by R David Murray · 11 years ago
  63. 965794e Merge: PEP8 fixup on previous patch, remove unused imports in test_email. by R David Murray · 11 years ago
  64. b9534f4 PEP8 fixup on previous patch, remove unused import in test_email. by R David Murray · 11 years ago
  65. 2e78cd9 Merge: #14645: Generator now emits correct linesep for all parts. by R David Murray · 11 years ago
  66. addb0be Merge: #14645: Generator now emits correct linesep for all parts. by R David Murray · 11 years ago
  67. e67c6c5 #14645: Generator now emits correct linesep for all parts. by R David Murray · 11 years ago
  68. 2940e71 #15220: simplify and speed up feedparser's line splitting. by R David Murray · 11 years ago
  69. 64634eb Merge: #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 11 years ago
  70. 66383b2 Merge: #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 11 years ago
  71. ec317a8 #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 11 years ago
  72. c9b4e60 Merge: #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 11 years ago
  73. 6cb1d67 Merge: #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 11 years ago
  74. ceaa8b1 #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 11 years ago
  75. c44911f Merge: #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  76. e201e9d Merge: #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  77. f581b37 #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  78. 2c4f6e8 Merge #16811: Fix folding of headers with no value in provisional policies. by R David Murray · 12 years ago
  79. 844b0e6 #16811: Fix folding of headers with no value in provisional policies. by R David Murray · 12 years ago
  80. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  81. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  82. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  83. 4993cc0 utilize yield from by Philip Jenvey · 12 years ago
  84. 1aca31e Closes #15925: fix regression in parsedate() and parsedate_tz() that should return None if unable to parse the argument. by Georg Brandl · 12 years ago
  85. ad2a7d5 Merge #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  86. 638d40b #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  87. f9bd914 Issue #665194: Added a small optimization by Alexander Belopolsky · 12 years ago
  88. 097a120 #665194: fix variable name in exception code path. by R David Murray · 12 years ago
  89. b8687df #665194: Update email.utils.localtime to use astimezone, and fix bug. by R David Murray · 12 years ago
  90. 970bef2 Merge #15232: correctly mangle From lines in MIME preamble and epilogue by R David Murray · 12 years ago
  91. 6a31bc6 #15232: correctly mangle From lines in MIME preamble and epilogue by R David Murray · 12 years ago
  92. 97f43c0 #15160: Extend the new email parser to handle MIME headers. by R David Murray · 12 years ago
  93. 76935b9 Issue #14653: email.utils.mktime_tz() no longer relies on system by Alexander Belopolsky · 12 years ago
  94. a07548e Issue #14653: email.utils.mktime_tz() no longer relies on system by Alexander Belopolsky · 12 years ago
  95. 7636b19 Merge: Update out of date docstring. by R David Murray · 12 years ago
  96. 3ac8c78 Update out of date docstring. by R David Murray · 12 years ago
  97. 6e50b69 Now that Defects are Exception subclasses, call super. by R David Murray · 12 years ago
  98. 07ea53c #1079: Fix parsing of encoded words. by R David Murray · 12 years ago
  99. 1be413e Don't use metaclasses when class decorators can do the job. by R David Murray · 12 years ago
  100. abfc374 #10839: raise an error on add of duplicate unique headers in new email policies by R David Murray · 12 years ago