Author: David Schneider <[email protected]> Branch: Changeset: r59873:bd749c887394 Date: 2013-01-08 09:39 +0100 http://bitbucket.org/pypy/pypy/changeset/bd749c887394/
Log: kill unused imports diff --git a/pypy/jit/backend/arm/test/test_gc_integration.py b/pypy/jit/backend/arm/test/test_gc_integration.py --- a/pypy/jit/backend/arm/test/test_gc_integration.py +++ b/pypy/jit/backend/arm/test/test_gc_integration.py @@ -2,25 +2,13 @@ """ Tests for register allocation for common constructs """ -import py -from pypy.jit.metainterp.history import BoxInt, \ - BoxPtr, TreeLoop, TargetToken -from pypy.jit.metainterp.resoperation import rop, ResOperation -from pypy.jit.codewriter import heaptracker +from pypy.jit.metainterp.history import TargetToken from pypy.jit.backend.llsupport.gc import GcLLDescription, GcLLDescr_boehm -from pypy.jit.backend.llsupport.gc import GcLLDescription from pypy.jit.backend.detect_cpu import getcpuclass from pypy.jit.backend.arm.arch import WORD from pypy.rpython.lltypesystem import lltype, llmemory, rffi -from pypy.rpython.annlowlevel import llhelper -from pypy.rpython.lltypesystem import rclass -from pypy.jit.backend.llsupport.gc import GcLLDescr_framework -from pypy.jit.backend.arm.test.test_regalloc import MockAssembler from pypy.jit.backend.arm.test.test_regalloc import BaseTestRegalloc -from pypy.jit.backend.arm.regalloc import ARMFrameManager, VFPRegisterManager -from pypy.jit.codewriter.effectinfo import EffectInfo -from pypy.jit.backend.arm.regalloc import Regalloc CPU = getcpuclass() _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
