Author: Armin Rigo <[email protected]> Branch: ffi-backend Changeset: r55834:0d2d227d73ae Date: 2012-06-26 17:00 +0200 http://bitbucket.org/pypy/pypy/changeset/0d2d227d73ae/
Log: Missing imports. diff --git a/pypy/module/_ffi_backend/ctypeenum.py b/pypy/module/_ffi_backend/ctypeenum.py --- a/pypy/module/_ffi_backend/ctypeenum.py +++ b/pypy/module/_ffi_backend/ctypeenum.py @@ -3,6 +3,8 @@ """ from pypy.interpreter.error import OperationError, operationerrfmt +from pypy.rpython.lltypesystem import rffi +from pypy.rlib.rarithmetic import intmask from pypy.rlib.objectmodel import keepalive_until_here from pypy.module._ffi_backend.ctypeprim import W_CTypePrimitiveSigned _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
