[pypy-commit] pypy py3k: fix imports

pjenvey noreply at buildbot.pypy.org
Thu Oct 30 02:20:21 CET 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r74295:3764424286e5
Date: 2014-10-29 18:19 -0700
http://bitbucket.org/pypy/pypy/changeset/3764424286e5/

Log:	fix imports

diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/interp_array.py
--- a/pypy/module/array/interp_array.py
+++ b/pypy/module/array/interp_array.py
@@ -15,8 +15,6 @@
     interp2app, interpindirect2app, unwrap_spec)
 from pypy.interpreter.typedef import (
     GetSetProperty, TypeDef, make_weakref_descr)
-from pypy.interpreter.generator import GeneratorIterator
-from pypy.module._file.interp_file import W_File
 
 
 @unwrap_spec(typecode=str)
diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -9,7 +9,7 @@
 from rpython.rlib.objectmodel import instantiate, specialize, is_annotation_constant
 from rpython.rlib.debug import make_sure_not_resized
 from rpython.rlib.rarithmetic import base_int, widen, is_valid_int
-from rpython.rlib.objectmodel import import_from_mixin
+from rpython.rlib.objectmodel import import_from_mixin, we_are_translated
 from rpython.rlib import jit
 
 # Object imports


More information about the pypy-commit mailing list