From: Andrew MacIntyre Date: Tue, 31 Dec 2002 11:28:22 +0000 (+0000) Subject: OS/2 EMX has no popen2.Popen3 even though bunzip2 is available X-Git-Tag: v2.3c1~2736 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c70a8e411f934303bf474cf0161e0590e0eef4c8;p=thirdparty%2FPython%2Fcpython.git OS/2 EMX has no popen2.Popen3 even though bunzip2 is available --- diff --git a/Lib/test/test_bz2.py b/Lib/test/test_bz2.py index 104d7e0eb5c7..e7c188d04938 100644 --- a/Lib/test/test_bz2.py +++ b/Lib/test/test_bz2.py @@ -11,7 +11,7 @@ import sys import bz2 from bz2 import BZ2File, BZ2Compressor, BZ2Decompressor -has_cmdline_bunzip2 = sys.platform not in ("win32",) +has_cmdline_bunzip2 = sys.platform not in ("win32", "os2emx") class BaseTest(unittest.TestCase): "Base for other testcases."