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
This commit is contained in:
Andrew MacIntyre 2002-02-24 05:32:32 +00:00
parent 75a8e65873
commit 5cef57131f
6 changed files with 446 additions and 15 deletions

View file

@ -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