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 lelit
Recipients azazel, lelit, methane, yselivanov
Date 2017-01-13.22:57:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484348240.3.0.388926011615.issue29271@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW, the problem afflicts other functions, for example the following script exhibits a similar difference:

import asyncio

async def coro():
    print(asyncio.Task.all_tasks())
    print(asyncio.Task.all_tasks(None))

loop = asyncio.get_event_loop()
loop.run_until_complete(coro())
History
Date User Action Args
2017-01-13 22:57:20lelitsetrecipients: + lelit, methane, yselivanov, azazel
2017-01-13 22:57:20lelitsetmessageid: <1484348240.3.0.388926011615.issue29271@psf.upfronthosting.co.za>
2017-01-13 22:57:20lelitlinkissue29271 messages
2017-01-13 22:57:20lelitcreate