aboutsummaryrefslogtreecommitdiffstats
path: root/popenasync.py
diff options
context:
space:
mode:
Diffstat (limited to 'popenasync.py')
-rw-r--r--popenasync.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/popenasync.py b/popenasync.py
index df4944ee7..78ae1cbf3 100644
--- a/popenasync.py
+++ b/popenasync.py
@@ -23,7 +23,12 @@ if sys.version_info >= (3,):
else:
null_byte = '\x00'
-if subprocess.mswindows:
+if hasattr(subprocess, 'mswindows'):
+ mswindows = subprocess.mswindows
+else:
+ mswindows = subprocess._mswindows
+
+if mswindows:
if sys.version_info >= (3,):
# Test date should be in ascii.
def encode(s):
@@ -142,7 +147,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