diff options
author | Guido van Rossum <guido@python.org> | 1997-12-30 04:20:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-30 04:20:58 (GMT) |
commit | d01e9aa0df6471befde64550db232968732d975e (patch) | |
tree | 80cddecfcc7f7a04d27e55ba8de8d11f44baf0a9 /Lib/dos-8x3/test_zli.py | |
parent | 1cd6a457d9c4aa3cea72e7ccef4b008eb5e24654 (diff) | |
download | cpython-d01e9aa0df6471befde64550db232968732d975e.zip cpython-d01e9aa0df6471befde64550db232968732d975e.tar.gz cpython-d01e9aa0df6471befde64550db232968732d975e.tar.bz2 |
the usual
Diffstat (limited to 'Lib/dos-8x3/test_zli.py')
-rw-r--r-- | Lib/dos-8x3/test_zli.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/dos-8x3/test_zli.py b/Lib/dos-8x3/test_zli.py index 62c2604..72dbcfa 100644 --- a/Lib/dos-8x3/test_zli.py +++ b/Lib/dos-8x3/test_zli.py @@ -3,8 +3,11 @@ import sys import imp import string -t = imp.find_module('test_zlib') -file = t[0] +try: + t = imp.find_module('test_zlib') + file = t[0] +except ImportError: + file = open(__file__) buf = file.read() * 8 file.close() |