Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r60892:fa85e21b3f1b
Date: 2013-02-05 21:45 -0500
http://bitbucket.org/pypy/pypy/changeset/fa85e21b3f1b/

Log:    __future__ is frozen, so use another module's __file__ (see
        issue1259)

diff --git a/lib-python/2.7/test/test_modulefinder.py 
b/lib-python/2.7/test/test_modulefinder.py
--- a/lib-python/2.7/test/test_modulefinder.py
+++ b/lib-python/2.7/test/test_modulefinder.py
@@ -16,7 +16,7 @@
 # library.
 
 TEST_DIR = tempfile.mkdtemp()
-TEST_PATH = [TEST_DIR, os.path.dirname(__future__.__file__)]
+TEST_PATH = [TEST_DIR, os.path.dirname(tempfile.__file__)]
 
 # Each test description is a list of 5 items:
 #
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to