Commit bc8b2bd9 authored by Guido van Rossum's avatar Guido van Rossum

Look for uuencoded test files in the directory containing this module, too.

(This is necessary because when imported as test.test_rgbimg, the test
directory is not on sys.path.)
parent 970f5d33
......@@ -11,7 +11,8 @@ print 'RGBimg test suite:'
def findfile(file):
if os.path.isabs(file): return file
import sys
for dn in sys.path:
print "__file__ =", __file__
for dn in [os.path.dirname(__file__)] + sys.path:
fn = os.path.join(dn, file)
if os.path.exists(fn): return fn
return file
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment