Fix path search for test data file so it works under more circumstances.
diff --git a/Lib/test/test_imageop.py b/Lib/test/test_imageop.py
index 77281ab..89b111c 100755
--- a/Lib/test/test_imageop.py
+++ b/Lib/test/test_imageop.py
@@ -155,7 +155,12 @@
""" return a more qualified path to name"""
import sys
import os
- for dir in sys.path:
+ path = sys.path
+ try:
+ path = [os.path.dirname(__file__)] + path
+ except NameError:
+ pass
+ for dir in path:
fullname = os.path.join(dir, name)
if os.path.exists(fullname):
return fullname