]> granicus.if.org Git - python/commitdiff
Make this test work when imported from the interpreter instead of run
authorGuido van Rossum <guido@python.org>
Thu, 29 Jan 1998 21:53:17 +0000 (21:53 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 29 Jan 1998 21:53:17 +0000 (21:53 +0000)
from regrtest.py (it still works there too, of course).

Lib/test/test_sunaudiodev.py

index aa85752e20bec6e1c5d5b8d2a057b3656dcaa531..7e9d1b1e17635dad93269b9bf73e9b671fd700b4 100644 (file)
@@ -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