commit | c70a8e411f934303bf474cf0161e0590e0eef4c8 | [log] [tgz] |
---|---|---|
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | Tue Dec 31 11:28:22 2002 +0000 |
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | Tue Dec 31 11:28:22 2002 +0000 |
tree | fc3016c8d2dfce5ef9c66b9b0ad4eca6452e50a6 | |
parent | fd07e7dda709edacc16a851da981a628d61ffd72 [diff] [blame] |
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 104d7e0..e7c188d 100644 --- a/Lib/test/test_bz2.py +++ b/Lib/test/test_bz2.py
@@ -11,7 +11,7 @@ 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."