Commit f44cd1c0 authored by Jason Madden's avatar Jason Madden

Don't claim to implement _posixsubprocess on Windows since it wasn't there originally.

parent 436f6557
......@@ -45,7 +45,7 @@ __implements__ = [
'check_call',
'check_output',
]
if PY3:
if PY3 and not sys.platform.startswith('win32'):
__implements__.append("_posixsubprocess")
_posixsubprocess = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment