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, vstinner, yselivanov
Date 2018-01-23.11:21:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516706498.55.0.467229070634.issue32636@psf.upfronthosting.co.za>
In-reply-to
Content
I used this change to skip the test which hangs, (1):

diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py
index 1c361c8ec1..cf01df7061 100644
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -991,7 +991,7 @@ class BaseTaskTests:
         loop.advance_time(10)
         loop.run_until_complete(asyncio.wait([a, b], loop=loop))
 
-    def test_wait_with_exception(self):
+    def Xtest_wait_with_exception(self):
 
         def gen():
             when = yield
History
Date User Action Args
2018-01-23 11:21:38vstinnersetrecipients: + vstinner, asvetlov, yselivanov
2018-01-23 11:21:38vstinnersetmessageid: <1516706498.55.0.467229070634.issue32636@psf.upfronthosting.co.za>
2018-01-23 11:21:38vstinnerlinkissue32636 messages
2018-01-23 11:21:38vstinnercreate