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 vstinner
Recipients asvetlov, pablogsal, vstinner, yselivanov
Date 2018-06-07.00:58:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528333105.09.0.592728768989.issue33694@psf.upfronthosting.co.za>
In-reply-to
Content
The bug can be reproduced on Linux using this patch:

diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py
index 78ab1eb822..735313152c 100644
--- a/Lib/test/test_asyncio/test_sslproto.py
+++ b/Lib/test/test_asyncio/test_sslproto.py
@@ -471,6 +471,8 @@ class BaseStartTLS(func_tests.FunctionalTestCaseMixin):
 
             self.assertEqual(proto.data, b'')
 
+            await asyncio.sleep(1)
+
             new_tr = await self.loop.start_tls(
                 tr, proto, server_context,
                 server_side=True,
History
Date User Action Args
2018-06-07 00:58:25vstinnersetrecipients: + vstinner, asvetlov, yselivanov, pablogsal
2018-06-07 00:58:25vstinnersetmessageid: <1528333105.09.0.592728768989.issue33694@psf.upfronthosting.co.za>
2018-06-07 00:58:25vstinnerlinkissue33694 messages
2018-06-07 00:58:24vstinnercreate