[pypy-commit] pypy kill-someobject: remove robject from rdict

alex_gaynor noreply at buildbot.pypy.org
Sun Oct 7 16:35:05 CEST 2012


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: kill-someobject
Changeset: r57818:361aead052f6
Date: 2012-10-07 07:34 -0700
http://bitbucket.org/pypy/pypy/changeset/361aead052f6/

Log:	remove robject from rdict

diff --git a/pypy/rpython/ootypesystem/rdict.py b/pypy/rpython/ootypesystem/rdict.py
--- a/pypy/rpython/ootypesystem/rdict.py
+++ b/pypy/rpython/ootypesystem/rdict.py
@@ -1,19 +1,12 @@
 from pypy.rpython.error import TyperError
 from pypy.tool.pairtype import pairtype
-from pypy.annotation import model as annmodel
 from pypy.objspace.flow.model import Constant
-from pypy.rpython.rdict import AbstractDictRepr, AbstractDictIteratorRepr,\
-     rtype_newdict
-from pypy.rpython.rpbc import MethodOfFrozenPBCRepr,\
-     AbstractFunctionsPBCRepr, AbstractMethodsPBCRepr
+from pypy.rpython.rdict import AbstractDictRepr, AbstractDictIteratorRepr
+from pypy.rpython.rpbc import (MethodOfFrozenPBCRepr, AbstractFunctionsPBCRepr,
+    AbstractMethodsPBCRepr)
 from pypy.rpython.ootypesystem import ootype
-from pypy.rpython.ootypesystem.rlist import ll_newlist
-from pypy.rlib.rarithmetic import r_uint
-from pypy.rlib.objectmodel import hlinvoke
-from pypy.rpython import robject
 from pypy.rlib import objectmodel
-from pypy.rpython import rmodel
-from pypy.rpython import llinterp
+from pypy.rpython import rmodel, llinterp
 
 
 class DictRepr(AbstractDictRepr):


More information about the pypy-commit mailing list