Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r47218:4c07862b1f06
Date: 2011-09-12 12:49 +0200
http://bitbucket.org/pypy/pypy/changeset/4c07862b1f06/

Log:    remove unnecessary imports

diff --git a/pypy/rpython/rbuilder.py b/pypy/rpython/rbuilder.py
--- a/pypy/rpython/rbuilder.py
+++ b/pypy/rpython/rbuilder.py
@@ -1,13 +1,11 @@
 
 from pypy.rpython.rmodel import Repr
-from pypy.rpython.annlowlevel import llhelper
 from pypy.rpython.lltypesystem import lltype
 from pypy.rlib.rstring import INIT_SIZE
 from pypy.annotation.model import SomeChar, SomeUnicodeCodePoint
 
 class AbstractStringBuilderRepr(Repr):
     def rtyper_new(self, hop):
-        repr = hop.r_result
         if len(hop.args_v) == 0:
             v_arg = hop.inputconst(lltype.Signed, INIT_SIZE)
         else:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to