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 xtreak
Recipients asvetlov, docs@python, dtrauma, eamanu, mbussonn, miss-islington, xtreak, yselivanov
Date 2019-09-10.13:43:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568123020.35.0.54571012542.issue36373@roundup.psfhosted.org>
In-reply-to
Content
Few more tests and call sites

./python.exe -Wall -m test test_asyncio
Run tests sequentially
0:00:00 load avg: 2.41 [1/1] test_asyncio
/Users/karthikeyansingaravelan/stuff/python/cpython/Lib/asyncio/locks.py:335: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
  lock = Lock(loop=self._loop)
test_asyncio passed in 1 min 38 sec

== Tests result: SUCCESS ==

1 test OK.

Total duration: 1 min 38 sec
Tests result: SUCCESS

call sites 

>>> list(asyncio.tasks.as_completed([asyncio.ensure_future(asyncio.sleep(1))]))
/Users/karthikeyansingaravelan/stuff/python/cpython/Lib/asyncio/tasks.py:579: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
  done = Queue(loop=loop)
/Users/karthikeyansingaravelan/stuff/python/cpython/Lib/asyncio/queues.py:48: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
  self._finished = locks.Event(loop=self._loop)
History
Date User Action Args
2019-09-10 13:43:40xtreaksetrecipients: + xtreak, asvetlov, docs@python, yselivanov, mbussonn, eamanu, miss-islington, dtrauma
2019-09-10 13:43:40xtreaksetmessageid: <1568123020.35.0.54571012542.issue36373@roundup.psfhosted.org>
2019-09-10 13:43:40xtreaklinkissue36373 messages
2019-09-10 13:43:40xtreakcreate