OS/2 EMX has no popen2.Popen3 even though bunzip2 is available

This commit is contained in:
Andrew MacIntyre 2002-12-31 11:28:22 +00:00
parent fd07e7dda7
commit c70a8e411f
1 changed files with 1 additions and 1 deletions

View File

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