This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients pablogsal, r.david.murray
Date 2018-07-27.14:12:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532700767.93.0.56676864532.issue34246@psf.upfronthosting.co.za>
In-reply-to
Content
The TypeError is because the test is misusing the assertRaises API:

         self.assertRaises(smtplib.SMTPNotSupportedError,
                          smtp.send_message(msg))

should be 

         self.assertRaises(smtplib.SMTPNotSupportedError,
                          smtp.send_message, msg)
History
Date User Action Args
2018-07-27 14:12:47pablogsalsetrecipients: + pablogsal, r.david.murray
2018-07-27 14:12:47pablogsalsetmessageid: <1532700767.93.0.56676864532.issue34246@psf.upfronthosting.co.za>
2018-07-27 14:12:47pablogsallinkissue34246 messages
2018-07-27 14:12:47pablogsalcreate