summaryrefslogtreecommitdiffstats
path: root/Lib/popen2.py
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-02-24 05:32:32 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-02-24 05:32:32 (GMT)
commit5cef57131fc02de55133e4eafdee27fb76456bb8 (patch)
treed22cd58c3f46b5c3564d283eeb8965197b15bb93 /Lib/popen2.py
parent75a8e65873f8c73f27f353b30bb1de5aceb6b74c (diff)
downloadcpython-5cef57131fc02de55133e4eafdee27fb76456bb8.zip
cpython-5cef57131fc02de55133e4eafdee27fb76456bb8.tar.gz
cpython-5cef57131fc02de55133e4eafdee27fb76456bb8.tar.bz2
OS/2 EMX port Library and regression test changes:
Lib/ os.py os2emxpath.py // added - OS/2 EMX specific path manipulation routines popen2.py site.py Lib/test/ test_fcntl.py test_longexp.py
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r--Lib/popen2.py2
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