[pypy-svn] r13787 - pypy/dist/pypy/rpython

tismer at codespeak.net tismer at codespeak.net
Fri Jun 24 13:42:02 CEST 2005


Author: tismer
Date: Fri Jun 24 13:42:01 2005
New Revision: 13787

Modified:
   pypy/dist/pypy/rpython/rlist.py
Log:
and guess what: still more less aster-risk

Modified: pypy/dist/pypy/rpython/rlist.py
==============================================================================
--- pypy/dist/pypy/rpython/rlist.py	(original)
+++ pypy/dist/pypy/rpython/rlist.py	Fri Jun 24 13:42:01 2005
@@ -1,13 +1,15 @@
 from pypy.annotation.pairtype import pairtype
 from pypy.annotation import model as annmodel
 from pypy.objspace.flow.model import Constant
-from pypy.rpython.lltype import *
 from pypy.rpython.rmodel import Repr, TyperError, IntegerRepr, inputconst
 from pypy.rpython import rrange
 from pypy.rpython.rslice import SliceRepr
 from pypy.rpython.rslice import startstop_slice_repr, startonly_slice_repr
 from pypy.rpython.rstr import string_repr, ll_streq
 from pypy.rpython.rclass import InstanceRepr
+from pypy.rpython.lltype import GcForwardReference, Ptr, GcArray, GcStruct
+from pypy.rpython.lltype import Void, Signed, malloc, typeOf, Primitive
+from pypy.rpython.lltype import Bool
 
 # ____________________________________________________________
 #



More information about the Pypy-commit mailing list