[pypy-svn] pypy improve-unwrap_spec: Fix imports

amauryfa commits-noreply at bitbucket.org
Thu Feb 17 11:58:56 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: improve-unwrap_spec
Changeset: r42105:d0e201b0e61c
Date: 2011-02-17 11:57 +0100
http://bitbucket.org/pypy/pypy/changeset/d0e201b0e61c/

Log:	Fix imports

diff --git a/pypy/module/_minimal_curses/interp_curses.py b/pypy/module/_minimal_curses/interp_curses.py
--- a/pypy/module/_minimal_curses/interp_curses.py
+++ b/pypy/module/_minimal_curses/interp_curses.py
@@ -1,5 +1,5 @@
 
-from pypy.interpreter.baseobjspace import unwrap_spec
+from pypy.interpreter.gateway import unwrap_spec
 from pypy.interpreter.error import OperationError
 from pypy.module._minimal_curses import _curses
 

diff --git a/pypy/module/crypt/interp_crypt.py b/pypy/module/crypt/interp_crypt.py
--- a/pypy/module/crypt/interp_crypt.py
+++ b/pypy/module/crypt/interp_crypt.py
@@ -1,5 +1,5 @@
 from pypy.interpreter.error import OperationError
-from pypy.interpreter.baseobjspace import unwrap_spec
+from pypy.interpreter.gateway import unwrap_spec
 from pypy.rpython.lltypesystem import rffi, lltype
 from pypy.translator.tool.cbuild import ExternalCompilationInfo
 import sys


More information about the Pypy-commit mailing list