(self)
| 790 | self.evt.clear() |
| 791 | |
| 792 | def tearDown(self): |
| 793 | self.evt.wait() |
| 794 | sys.stdout = self.old_stdout |
| 795 | threading_helper.join_thread(self.thread) |
| 796 | del self.thread |
| 797 | self.doCleanups() |
| 798 | threading_helper.threading_cleanup(*self.thread_key) |
| 799 | |
| 800 | def testLineTooLong(self): |
| 801 | self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP, |
nothing calls this directly
no test coverage detected