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

tismer at codespeak.net tismer at codespeak.net
Fri Jun 24 13:52:40 CEST 2005


Author: tismer
Date: Fri Jun 24 13:52:39 2005
New Revision: 13794

Modified:
   pypy/dist/pypy/rpython/rslice.py
   pypy/dist/pypy/rpython/rstr.py
Log:
(import *) --
boring ++

Modified: pypy/dist/pypy/rpython/rslice.py
==============================================================================
--- pypy/dist/pypy/rpython/rslice.py	(original)
+++ pypy/dist/pypy/rpython/rslice.py	Fri Jun 24 13:52:39 2005
@@ -3,7 +3,7 @@
 from pypy.objspace.flow.model import Constant
 from pypy.rpython.rmodel import Repr, TyperError, IntegerRepr
 import sys
-from pypy.rpython.lltype import GcStruct, Signed, Ptr
+from pypy.rpython.lltype import GcStruct, Signed, Ptr, Void,malloc
 
 # ____________________________________________________________
 #

Modified: pypy/dist/pypy/rpython/rstr.py
==============================================================================
--- pypy/dist/pypy/rpython/rstr.py	(original)
+++ pypy/dist/pypy/rpython/rstr.py	Fri Jun 24 13:52:39 2005
@@ -1,7 +1,6 @@
 from weakref import WeakValueDictionary
 from pypy.annotation.pairtype import pairtype
 from pypy.annotation import model as annmodel
-from pypy.rpython.lltype import *
 from pypy.rpython.rmodel import Repr, TyperError, IntegerRepr
 from pypy.rpython.rmodel import StringRepr, CharRepr, inputconst
 from pypy.rpython.rarithmetic import intmask
@@ -10,6 +9,8 @@
 from pypy.rpython import rint
 from pypy.rpython.rslice import SliceRepr
 from pypy.rpython.rslice import startstop_slice_repr, startonly_slice_repr
+from pypy.rpython.lltype import GcStruct, Signed, Array, Char, Ptr, malloc
+from pypy.rpython.lltype import Bool, Void, GcArray, nullptr
 
 # ____________________________________________________________
 #



More information about the Pypy-commit mailing list