[pypy-commit] pypy ffi-backend: Missing imports.

arigo noreply at buildbot.pypy.org
Tue Jun 26 17:00:37 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
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


More information about the pypy-commit mailing list