An error occurred fetching the project authors.
  1. 19 May, 2017 1 commit
  2. 27 Apr, 2017 1 commit
  3. 01 Mar, 2017 2 commits
  4. 08 Sep, 2016 1 commit
    • R David Murray's avatar
      #24277: The new email API is no longer provisional. · 29d1bc08
      R David Murray authored
      This is a wholesale reorganization and editing of the email documentation to
      make the new API the standard one, and the old API the 'legacy' one.  The
      default is still the compat32 policy, for backward compatibility.  We will
      change that eventually.
      29d1bc08
  5. 10 Aug, 2016 1 commit
  6. 11 Jun, 2016 1 commit
  7. 16 May, 2015 1 commit
  8. 27 Sep, 2014 1 commit
  9. 08 May, 2014 1 commit
  10. 16 Mar, 2014 1 commit
  11. 10 Mar, 2014 1 commit
  12. 07 Feb, 2014 1 commit
  13. 11 Dec, 2013 1 commit
  14. 29 Nov, 2013 1 commit
  15. 24 Nov, 2013 1 commit
  16. 17 Oct, 2013 1 commit
    • R David Murray's avatar
      #18891: Complete new provisional email API. · 3da240fd
      R David Murray authored
      This adds EmailMessage and, MIMEPart subclasses of Message
      with new API methods, and a ContentManager class used by
      the new methods.  Also a new policy setting, content_manager.
      
      Patch was reviewed by Stephen J. Turnbull and Serhiy Storchaka,
      and reflects their feedback.
      
      I will ideally add some examples of using the new API to the
      documentation before the final release.
      3da240fd
  17. 19 Aug, 2013 1 commit
  18. 09 Aug, 2013 2 commits
  19. 29 Jul, 2013 1 commit
    • R David Murray's avatar
      #18584: make doctest examples in email documentation pass. · fdfb0050
      R David Murray authored
      With the exception of the 'as_string' call in the policy docs.
      That one is a separate issue.
      
      Note that when building the docs sphinx is complaining about
      .. testcleanup:: being an invalid directive.  I don't know
      why this is, as I'm following the sphinx docs...but fortunately
      the action is to omit the text in the body, so the generated
      documentation is correct.
      fdfb0050
  20. 28 May, 2012 1 commit
    • R David Murray's avatar
      #1672568: email now registers defects for base64 payload format errors. · 80e0aee9
      R David Murray authored
      Which also means that it is now producing *something* for any base64
      payload, which is what leads to the couple of older test changes in
      test_email.  This is a slightly backward incompatible behavior change,
      but the new behavior is so much more useful than the old (you can now
      *reliably* detect errors, and any program that was detecting errors by
      sniffing for a base64 return from get_payload(decode=True) and then doing
      its own error-recovery decode will just get the error-recovery decode
      right away).  So this seems to me to be worth the small risk inherent
      in this behavior change.
      
      This patch also refactors the defect tests into a separate test file,
      since they are no longer just parser tests.
      80e0aee9
  21. 27 May, 2012 3 commits
  22. 19 Oct, 2011 2 commits
  23. 15 Mar, 2011 4 commits
  24. 07 Jan, 2011 1 commit
  25. 19 Dec, 2010 1 commit
  26. 14 Dec, 2010 1 commit
  27. 13 Dec, 2010 2 commits
  28. 15 Oct, 2010 1 commit
  29. 08 Oct, 2010 1 commit
  30. 02 Jun, 2010 2 commits
    • R. David Murray's avatar
      Merged revisions 81658 via svnmerge from · e036af0c
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r81658 | r.david.murray | 2010-06-02 18:03:15 -0400 (Wed, 02 Jun 2010) | 9 lines
      
        #1368247: make set_charset/MIMEText automatically encode unicode _payload.
      
        Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as
        the charset and unicode as the _text argument.  Also makes the way in
        which unicode gets encoded to quoted printable for other charsets more
        sane (it only worked by accident previously).  The _payload now is encoded
        to the charset.output_charset if it is unicode.
      ........
      e036af0c
    • R. David Murray's avatar
      #1368247: make set_charset/MIMEText automatically encode unicode _payload. · 52dcd459
      R. David Murray authored
      Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as
      the charset and unicode as the _text argument.  Also makes the way in
      which unicode gets encoded to quoted printable for other charsets more
      sane (it only worked by accident previously).  The _payload now is encoded
      to the charset.output_charset if it is unicode.
      52dcd459