_win_subprocess didn't actually export this
This commit is contained in:
parent
c6d108ddb2
commit
834abfe6bf
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue