Author: Ronny Pfannschmidt <ronny.pfannschm...@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() _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit