[issue30479] improve asyncio debugging

2022-03-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: asyncio doesn't crash with scary messages like "AttributeError: 'NoneType' object has no attribute '_PENDING'" now. Checked with Python 3.9+ -- resolution: -> out of date stage: -> resolved status: open -> closed

[issue30479] improve asyncio debugging

2022-03-29 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30479] improve asyncio debugging

2017-05-26 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list

[issue30479] improve asyncio debugging

2017-05-26 Thread Tarek Ziadé
New submission from Tarek Ziadé: This is a very useful trick to understand why the loop cleanup generates a lot of "Exception ignored in: " https://github.com/python/asyncio/issues/423#issuecomment-268882753 Could we consider including it in Task.__del__ ? -- components: asyncio