summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bz2.py
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-31 11:28:22 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-12-31 11:28:22 (GMT)
commitc70a8e411f934303bf474cf0161e0590e0eef4c8 (patch)
treefc3016c8d2dfce5ef9c66b9b0ad4eca6452e50a6 /Lib/test/test_bz2.py
parentfd07e7dda709edacc16a851da981a628d61ffd72 (diff)
downloadcpython-c70a8e411f934303bf474cf0161e0590e0eef4c8.zip
cpython-c70a8e411f934303bf474cf0161e0590e0eef4c8.tar.gz
cpython-c70a8e411f934303bf474cf0161e0590e0eef4c8.tar.bz2
OS/2 EMX has no popen2.Popen3 even though bunzip2 is available
Diffstat (limited to 'Lib/test/test_bz2.py')
-rw-r--r--Lib/test/test_bz2.py2
1 files changed, 1 insertions, 1 deletions
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 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."