[pypy-commit] pypy stdlib-unification: fix vanilla stdlib ref in stdlib___future__

RonnyPfannschmidt noreply at buildbot.pypy.org
Fri Apr 13 22:55:53 CEST 2012


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: stdlib-unification
Changeset: r54349:4ed884067730
Date: 2012-04-13 22:53 +0200
http://bitbucket.org/pypy/pypy/changeset/4ed884067730/

Log:	fix vanilla stdlib ref in stdlib___future__

diff --git a/pypy/tool/stdlib___future__.py b/pypy/tool/stdlib___future__.py
--- a/pypy/tool/stdlib___future__.py
+++ b/pypy/tool/stdlib___future__.py
@@ -1,8 +1,8 @@
 # load __future__.py constants
 
 def load_module():
-    from pypy.tool.lib_pypy import LIB_PYTHON_VANILLA
-    module_path = LIB_PYTHON_VANILLA.join('__future__.py')
+    from pypy.tool.lib_pypy import LIB_PYTHON
+    module_path = LIB_PYTHON.join('__future__.py')
     execfile(str(module_path), globals())
 
 load_module()


More information about the pypy-commit mailing list