diff options
author | Guido van Rossum <guido@python.org> | 1997-05-22 20:48:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-22 20:48:03 (GMT) |
commit | f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00 (patch) | |
tree | bb0a99e2f85607bec83bca986256c54cd3f05505 /Lib/dos-8x3/test_sel.py | |
parent | c2d14176153038d568770f5499c8aa6a8c6a93fc (diff) | |
download | cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.zip cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.tar.gz cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.tar.bz2 |
The usual
Diffstat (limited to 'Lib/dos-8x3/test_sel.py')
-rwxr-xr-x | Lib/dos-8x3/test_sel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/dos-8x3/test_sel.py b/Lib/dos-8x3/test_sel.py index 32ccfd1..85bfa41 100755 --- a/Lib/dos-8x3/test_sel.py +++ b/Lib/dos-8x3/test_sel.py @@ -35,9 +35,9 @@ else: def test(): import sys - if sys.platform in ('win', 'mac'): + if sys.platform[:3] in ('win', 'mac'): if verbose: - print "Can't test select easily" + print "Can't test select easily on", sys.platform return cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done' p = os.popen(cmd, 'r') |