[pypy-commit] pypy default: Missing imports

arigo noreply at buildbot.pypy.org
Wed Mar 18 18:22:31 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76459:e4fbc76c0922
Date: 2015-03-18 18:22 +0100
http://bitbucket.org/pypy/pypy/changeset/e4fbc76c0922/

Log:	Missing imports

diff --git a/rpython/rtyper/lltypesystem/rlist.py b/rpython/rtyper/lltypesystem/rlist.py
--- a/rpython/rtyper/lltypesystem/rlist.py
+++ b/rpython/rtyper/lltypesystem/rlist.py
@@ -1,6 +1,7 @@
 from rpython.rlib import rgc, jit, types
 from rpython.rlib.debug import ll_assert
 from rpython.rlib.signature import signature
+from rpython.rtyper.error import TyperError
 from rpython.rtyper.lltypesystem import rstr
 from rpython.rtyper.lltypesystem.lltype import (GcForwardReference, Ptr, GcArray,
      GcStruct, Void, Signed, malloc, typeOf, nullptr, typeMethod)
diff --git a/rpython/rtyper/lltypesystem/rrange.py b/rpython/rtyper/lltypesystem/rrange.py
--- a/rpython/rtyper/lltypesystem/rrange.py
+++ b/rpython/rtyper/lltypesystem/rrange.py
@@ -1,5 +1,6 @@
 from rpython.rtyper.lltypesystem.lltype import Ptr, GcStruct, Signed, malloc, Void
 from rpython.rtyper.rrange import AbstractRangeRepr, AbstractRangeIteratorRepr
+from rpython.rtyper.error import TyperError
 
 # ____________________________________________________________
 #


More information about the pypy-commit mailing list