summaryrefslogtreecommitdiff
path: root/Lib/test/test_bz2.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-05 03:36:11 +0200
committerJesus Cea <jcea@jcea.es>2012-10-05 03:36:11 +0200
commitf01d695ccdf47855aa9b5f2185a8ce349ed004aa (patch)
treef0384a68cb1b511792e4917e417a998324da0ce1 /Lib/test/test_bz2.py
parentfa7d5392d467d832e259aff3834bc19a3c005600 (diff)
downloadcpython-git-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.gz
Closes #16135: Removal of OS/2 support
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 257b144500..92548f44aa 100644
--- a/Lib/test/test_bz2.py
+++ b/Lib/test/test_bz2.py
@@ -18,7 +18,7 @@ except ImportError:
bz2 = support.import_module('bz2')
from bz2 import BZ2File, BZ2Compressor, BZ2Decompressor
-has_cmdline_bunzip2 = sys.platform not in ("win32", "os2emx")
+has_cmdline_bunzip2 = (sys.platform != "win32")
class BaseTest(unittest.TestCase):
"Base for other testcases."