[issue32250] Add asyncio.current_task() and asyncio.all_tasks() funcitons

2017-12-16 Thread Andrew Svetlov
Change by Andrew Svetlov : -- components: +Library (Lib) resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker

[issue32250] Add asyncio.current_task() and asyncio.all_tasks() funcitons

2017-12-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 44d1a5912ea629aa20fdc377a5ab69d9ccf75d61 by Andrew Svetlov in branch 'master': bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)

[issue32250] Add asyncio.current_task() and asyncio.all_tasks() funcitons

2017-12-11 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +4698 ___ Python tracker ___ ___

[issue32250] Add asyncio.current_task() and asyncio.all_tasks() funcitons

2017-12-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: In https://github.com/python/cpython/pull/4766 discussion we decided to use module level functions instead of loop methods. -- title: Add loop.current_task() and loop.all_tasks() methods -> Add asyncio.current_task() and