1. 19 Apr, 2014 2 commits
  2. 18 Apr, 2014 3 commits
  3. 15 Apr, 2014 1 commit
  4. 18 Apr, 2014 3 commits
  5. 17 Apr, 2014 7 commits
  6. 16 Apr, 2014 6 commits
  7. 15 Apr, 2014 1 commit
  8. 16 Apr, 2014 3 commits
  9. 15 Apr, 2014 12 commits
  10. 14 Apr, 2014 2 commits
    • R David Murray's avatar
      #15104: add backtick code markup. · fe0e1082
      R David Murray authored
      fe0e1082
    • R David Murray's avatar
      #17498: Defer SMTPServerDisconnected errors until the next command. · afb151a5
      R David Murray authored
      Normally an SMTP server will return an error, and smtplib will then issue an
      RSET to return the connection to the known starting state.  Some servers,
      however, disconnect after issuing certain errors.  When we issue the RSET,
      this would result in raising an SMTPServerDisconnected error, *instead* of
      returning the error code the user of the library was expecting.  This fix
      makes the internal RSET calls ignore the disconnection so that the error code
      is returned.  The user of the library will then get the SMTPServerDisconnected
      error the next time they try to talk to the server.
      
      Patch by Kushal Das.
      afb151a5