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 legnaleurc
Recipients asvetlov, callumquick, legnaleurc, yselivanov
Date 2019-11-05.11:23:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572953017.54.0.814619743736.issue38608@roundup.psfhosted.org>
In-reply-to
Content
I cannot import asyncio.task, so I did this instead:

import asyncio.tasks
asyncio.tasks.Task = asyncio.tasks._PyTask

Then it changed to this:

Executing <Task pending name='Task-1' coro=<IsolatedAsyncioTestCase._asyncioLoopRunner() running at /.../lib/python3.8/unittest/async_case.py:96> wait_for=<Future pending cb=[Task.__wakeup()] created at /.../lib/python3.8/asyncio/base_events.py:418> created at /.../lib/python3.8/unittest/async_case.py:118> took 0.187 seconds

I suppose this means the entire test case is slow?
History
Date User Action Args
2019-11-05 11:23:37legnaleurcsetrecipients: + legnaleurc, asvetlov, yselivanov, callumquick
2019-11-05 11:23:37legnaleurcsetmessageid: <1572953017.54.0.814619743736.issue38608@roundup.psfhosted.org>
2019-11-05 11:23:37legnaleurclinkissue38608 messages
2019-11-05 11:23:37legnaleurccreate