[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2019-02-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that the note about a warning being logged if a pending task is destroyed does not exist in the new, rewritten version of the asyncio docs. Therefore, I'm going to close this as out of date. -- nosy: +cheryl.sabella resolution: -> out of

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2014-09-25 Thread Martin Panter
Changes by Martin Panter vadmium...@gmail.com: -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22474 ___ ___ Python-bugs-list

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2014-09-24 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22474 ___

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2014-09-24 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- components: +asyncio ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22474 ___ ___

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2014-09-24 Thread STINNER Victor
STINNER Victor added the comment: destroyed means collected by the garbage collector, when the last reference the task objected was cleared. To be honest, I have no idea who keeps a reference to tasks nor how the pending task destroyed bug occurs. pending means that the execution of the

[issue22474] No explanation of how a task gets destroyed in asyncio 'task' documentation

2014-09-23 Thread R. David Murray
New submission from R. David Murray: In https://docs.python.org/3/library/asyncio-task.html#task, there is a note about a warning being logged if a pending task is destroyed. The section does not explain or link to an explanation of how a task might get destroyed. Nor does it define