diff options
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r-- | Lib/popen2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py index 14fe12f..07ed6d6 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -112,7 +112,7 @@ class Popen4(Popen3): _active.append(self) -if sys.platform[:3] == "win": +if sys.platform[:3] == "win" or sys.platform == "os2emx": # Some things don't make sense on non-Unix platforms. del Popen3, Popen4 |