diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-02-24 05:32:32 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-02-24 05:32:32 (GMT) |
commit | 5cef57131fc02de55133e4eafdee27fb76456bb8 (patch) | |
tree | d22cd58c3f46b5c3564d283eeb8965197b15bb93 /Lib/popen2.py | |
parent | 75a8e65873f8c73f27f353b30bb1de5aceb6b74c (diff) | |
download | cpython-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.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 |