From: Guido van Rossum Date: Thu, 29 Jan 1998 21:53:17 +0000 (+0000) Subject: Make this test work when imported from the interpreter instead of run X-Git-Tag: v1.5.1~878 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9aef03af486b32bc191e719e2979f4fedab2281;p=python Make this test work when imported from the interpreter instead of run from regrtest.py (it still works there too, of course). --- diff --git a/Lib/test/test_sunaudiodev.py b/Lib/test/test_sunaudiodev.py index aa85752e20..7e9d1b1e17 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