get the name

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:16:23 -05:00
parent 8fa1b6bb1e
commit 23d1d76242

View File

@ -30,6 +30,7 @@ from textwrap import (
dedent,
)
from subprocess import (
PIPE,
Popen,
)
@ -144,9 +145,6 @@ class GetArgvTests(SyncTestCase):
from ._win_subprocess import (
Popen
)
from subprocess import (
PIPE,
)
argv = [executable.decode("utf-8"), save_argv_path.path] + argv
p = Popen(argv, stdin=PIPE, stdout=PIPE, stderr=PIPE)
p.stdin.close()