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 serhiy.storchaka
Recipients asvetlov, giampaolo.rodola, serhiy.storchaka, yselivanov
Date 2018-06-03.07:41:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528011716.86.0.592728768989.issue33743@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python -We -m test -v -m test__register_task_3 test_asyncio
...
======================================================================
ERROR: test__register_task_3 (test.test_asyncio.test_tasks.CIntrospectionTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/serhiy/py/cpython/Lib/test/test_asyncio/test_tasks.py", line 2616, in test__register_task_3
    self.assertEqual(asyncio.Task.all_tasks(loop), {task})
PendingDeprecationWarning: Task.all_tasks() is deprecated, use asyncio.all_tasks() instead

======================================================================
ERROR: test__register_task_3 (test.test_asyncio.test_tasks.PyIntrospectionTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/serhiy/py/cpython/Lib/test/test_asyncio/test_tasks.py", line 2616, in test__register_task_3
    self.assertEqual(asyncio.Task.all_tasks(loop), {task})
PendingDeprecationWarning: Task.all_tasks() is deprecated, use asyncio.all_tasks() instead

----------------------------------------------------------------------

And the test is failed if run with -We.
History
Date User Action Args
2018-06-03 07:41:56serhiy.storchakasetrecipients: + serhiy.storchaka, giampaolo.rodola, asvetlov, yselivanov
2018-06-03 07:41:56serhiy.storchakasetmessageid: <1528011716.86.0.592728768989.issue33743@psf.upfronthosting.co.za>
2018-06-03 07:41:56serhiy.storchakalinkissue33743 messages
2018-06-03 07:41:56serhiy.storchakacreate