diff options
author | Guido van Rossum <guido@python.org> | 1998-01-29 21:53:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-01-29 21:53:17 (GMT) |
commit | c9aef03af486b32bc191e719e2979f4fedab2281 (patch) | |
tree | 18dd0445b7050cf2d955f425d71e2cb90e41e85b /Lib | |
parent | fc40a8316a552ff4c67489498100c2457a32bd20 (diff) | |
download | cpython-c9aef03af486b32bc191e719e2979f4fedab2281.zip cpython-c9aef03af486b32bc191e719e2979f4fedab2281.tar.gz cpython-c9aef03af486b32bc191e719e2979f4fedab2281.tar.bz2 |
Make this test work when imported from the interpreter instead of run
from regrtest.py (it still works there too, of course).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sunaudiodev.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/test/test_sunaudiodev.py b/Lib/test/test_sunaudiodev.py index aa85752..7e9d1b1e 100644 --- a/Lib/test/test_sunaudiodev.py +++ b/Lib/test/test_sunaudiodev.py @@ -5,7 +5,12 @@ import os def findfile(file): if os.path.isabs(file): return file import sys - for dn in sys.path: + path = sys.path + try: + path = [os.path.dirname(__file__)] + path + except NameError: + pass + for dn in path: fn = os.path.join(dn, file) if os.path.exists(fn): return fn return file |