From: Neal Norwitz Date: Mon, 25 Aug 2008 03:55:03 +0000 (+0000) Subject: Merged revisions 66028 via svnmerge from X-Git-Tag: v3.0rc1~170 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2532967122a54a6549238c799e01d5c18498279a;p=python Merged revisions 66028 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r66028 | neal.norwitz | 2008-08-24 20:52:40 -0700 (Sun, 24 Aug 2008) | 1 line Try to reduce the flakiness of this test ........ --- diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py index 6a94658a70..55e30a8082 100644 --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -220,6 +220,10 @@ class DebuggingServerTests(TestCase): m = 'A test message' smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=3) smtp.sendmail('John', 'Sally', m) + # XXX(nnorwitz): this test is flaky and dies with a bad file descriptor + # in asyncore. This sleep might help, but should really be fixed + # properly by using an Event variable. + time.sleep(0.01) smtp.quit() self.client_evt.set()