mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Make this test work when imported from the interpreter instead of run
from regrtest.py (it still works there too, of course).
This commit is contained in:
parent
fc40a8316a
commit
c9aef03af4
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue