Author: Alex Gaynor <alex.gay...@gmail.com> Branch: Changeset: r68352:dfbed72e62a8 Date: 2013-12-01 19:03 -0600 http://bitbucket.org/pypy/pypy/changeset/dfbed72e62a8/
Log: Removed some unused imports diff --git a/pypy/module/pypyjit/interp_jit.py b/pypy/module/pypyjit/interp_jit.py --- a/pypy/module/pypyjit/interp_jit.py +++ b/pypy/module/pypyjit/interp_jit.py @@ -3,18 +3,18 @@ This is transformed to become a JIT by code elsewhere: pypy/jit/* """ -from rpython.tool.pairtype import extendabletype from rpython.rlib.rarithmetic import r_uint, intmask from rpython.rlib.jit import JitDriver, hint, we_are_jitted, dont_look_inside from rpython.rlib import jit from rpython.rlib.jit import current_trace_length, unroll_parameters import pypy.interpreter.pyopcode # for side-effects from pypy.interpreter.error import OperationError, operationerrfmt -from pypy.interpreter.pycode import PyCode, CO_GENERATOR +from pypy.interpreter.pycode import CO_GENERATOR from pypy.interpreter.pyframe import PyFrame from pypy.interpreter.pyopcode import ExitFrame, Yield from opcode import opmap + PyFrame._virtualizable_ = ['last_instr', 'pycode', 'valuestackdepth', 'locals_stack_w[*]', 'cells[*]', _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit