[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-16 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Bar! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-16 Thread miss-islington
miss-islington added the comment: New changeset 8516ca500eb45ecf997a471f003df02a9eb767ce by Miss Islington (bot) in branch '3.10': bpo-44911: Fixed IsolatedAsyncioTestCase from throwing an exception on leaked tasks (GH-27765)

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-16 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 2cb1a6806c0cefab0c3a40fdd428a89a4392570e by Bar Harel in branch 'main': bpo-44911: Fixed IsolatedAsyncioTestCase from throwing an exception on leaked tasks (GH-27765)

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-16 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +26249 pull_request: https://github.com/python/cpython/pull/2 ___ Python tracker

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-15 Thread Bar Harel
Change by Bar Harel : -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-13 Thread Bar Harel
Change by Bar Harel : -- keywords: +patch pull_requests: +26241 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27765 ___ Python tracker ___

[issue44911] Leaked tasks cause IsolatedAsyncioTestCase to throw an exception

2021-08-13 Thread Bar Harel
New submission from Bar Harel : Writing a test that leaks a running asyncio task will cause IsolatedAsyncioTestCase to crash while attempting to cancel. Seems like the loop argument wasn't removed from the usage of asyncio.gather() in IsolatedAsyncioTestCase._tearDownAsyncioLoop Pushing a