[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report Ryan. Indeed, there was a bug introduced during refactoring (one unneeded "yield" was kept), and there was a bug before refactoring (the transport was not closed). I'll open a new issue about "Unknown child process pid".

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread miss-islington
miss-islington added the comment: New changeset d5781e973079a20b2370686d6e080316d6c9f90d by Miss Islington (bot) in branch '3.9': bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870) https://github.com/python/cpython/commit/d5781e973079a20b2370686d6e080316d6c9f90d

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread miss-islington
miss-islington added the comment: New changeset 88a1920c7b7b0fb73c4037b460c6a4a8c0aa10f0 by Miss Islington (bot) in branch '3.10': bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870) https://github.com/python/cpython/commit/88a1920c7b7b0fb73c4037b460c6a4a8c0aa10f0

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +26333 pull_request: https://github.com/python/cpython/pull/27878 ___ Python tracker ___

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 585390fdd8661b4bc08bdfc27551292da9b4b9b8 by Serhiy Storchaka in branch 'main': bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870) https://github.com/python/cpython/commit/585390fdd8661b4bc08bdfc27551292da9b4b9b8

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +26332 pull_request: https://github.com/python/cpython/pull/27877 ___ Python tracker

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +asyncio type: -> behavior versions: -Python 3.8 ___ Python tracker ___ ___

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch nosy: +serhiy.storchaka nosy_count: 7.0 -> 8.0 pull_requests: +26324 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27870 ___ Python tracker

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-20 Thread Andrei Kulakov
Change by Andrei Kulakov : -- nosy: +andrei.avk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44968] Fix/remove test_subprocess_wait_no_same_group from test_asyncio tests

2021-08-20 Thread Ryan Mast (nightlark)
New submission from Ryan Mast (nightlark) : A deprecation made in bpo-41322 uncovered issues with test_subprocess_wait_no_same_group in test_asyncio that seems to have been broken for some time. Reverting to a similar structure prior to the refactoring in