[issue40152] Coroutine hangs if it performs async operations when handling exception sent using throw()

2020-05-17 Thread Chris Jerdonek
Change by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue40152] Coroutine hangs if it performs async operations when handling exception sent using throw()

2020-04-02 Thread Guilherme Salgado
Change by Guilherme Salgado : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue40152] Coroutine hangs if it performs async operations when handling exception sent using throw()

2020-04-02 Thread Guilherme Salgado
New submission from Guilherme Salgado : A coroutine will hang forever if it that catches an exception sent via its throw() method and then makes async calls while handling that exception. The same coroutine will complete just fine if the exception is instead raised from within it. Here's a sc