aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--popenasync.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/popenasync.py b/popenasync.py
index df4944ee7..eb1a238fc 100644
--- a/popenasync.py
+++ b/popenasync.py
@@ -23,7 +23,9 @@ if sys.version_info >= (3,):
else:
null_byte = '\x00'
-if subprocess.mswindows:
+mswindows = (sys.platform == "win32")
+
+if mswindows:
if sys.version_info >= (3,):
# Test date should be in ascii.
def encode(s):
@@ -142,7 +144,7 @@ class Popen(subprocess.Popen):
getattr(self, which).close()
setattr(self, which, None)
- if subprocess.mswindows:
+ if mswindows:
def kill(self):
# Recipes
#http://me.in-berlin.de/doc/python/faq/windows.html#how-do-i-emulate-os-kill-in-windows