Author: David Schneider <[email protected]> Branch: arm-backed-float Changeset: r44500:80070eb28dfd Date: 2011-05-24 19:15 +0200 http://bitbucket.org/pypy/pypy/changeset/80070eb28dfd/
Log: pypy 1.4 compatibility diff --git a/pypy/jit/backend/arm/assembler.py b/pypy/jit/backend/arm/assembler.py --- a/pypy/jit/backend/arm/assembler.py +++ b/pypy/jit/backend/arm/assembler.py @@ -1,3 +1,4 @@ +from __future__ import with_statement from pypy.jit.backend.arm.helper.assembler import saved_registers, count_reg_args from pypy.jit.backend.arm import conditions as c from pypy.jit.backend.arm import locations diff --git a/pypy/jit/backend/arm/opassembler.py b/pypy/jit/backend/arm/opassembler.py --- a/pypy/jit/backend/arm/opassembler.py +++ b/pypy/jit/backend/arm/opassembler.py @@ -1,3 +1,4 @@ +from __future__ import with_statement from pypy.jit.backend.arm import conditions as c from pypy.jit.backend.arm import locations from pypy.jit.backend.arm import registers as r _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
