Skip to content

Commit 7a90bb4

Browse files
[3.13] fix ResourceWarnings of test_kill_issue43884 in asyncio (GH-154178) (#154185)
fix ResourceWarnings of test_kill_issue43884 in asyncio (GH-154178) (cherry picked from commit 6df4993) Co-authored-by: Kumar Aditya <kumaraditya@python.org>
1 parent c8de391 commit 7a90bb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_asyncio/test_subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def test_kill_issue43884(self):
250250
# kills the process and all its children.
251251
creationflags = CREATE_NEW_PROCESS_GROUP
252252
proc = self.loop.run_until_complete(
253-
asyncio.create_subprocess_shell(blocking_shell_command, stdout=asyncio.subprocess.PIPE,
253+
asyncio.create_subprocess_shell(blocking_shell_command,
254254
creationflags=creationflags)
255255
)
256256
self.loop.run_until_complete(asyncio.sleep(1))

0 commit comments

Comments
 (0)