_win_subprocess didn't actually export this

This commit is contained in:
Jean-Paul Calderone 2021-01-11 15:09:25 -05:00
parent c6d108ddb2
commit 834abfe6bf
1 changed files with 3 additions and 3 deletions

View File

@ -114,15 +114,15 @@ if platform.isWindows():
# better job. However, only use it on Windows because it doesn't work # better job. However, only use it on Windows because it doesn't work
# anywhere else. # anywhere else.
from ._win_subprocess import ( from ._win_subprocess import (
PIPE,
Popen, Popen,
) )
else: else:
from subprocess import ( from subprocess import (
PIPE,
Popen, Popen,
) )
from subprocess import (
PIPE,
)
TEST_RSA_KEY_SIZE = 522 TEST_RSA_KEY_SIZE = 522