Author: Philip Jenvey <[email protected]> Branch: py3k Changeset: r63158:561319b8dde4 Date: 2013-04-08 15:41 -0700 http://bitbucket.org/pypy/pypy/changeset/561319b8dde4/
Log: int_typedef -> long_typedef diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/pypy/module/micronumpy/interp_boxes.py +++ b/pypy/module/micronumpy/interp_boxes.py @@ -5,15 +5,15 @@ from pypy.objspace.std.floattype import float_typedef from pypy.objspace.std.stringtype import str_typedef from pypy.objspace.std.unicodetype import unicode_typedef, unicode_from_object -from pypy.objspace.std.inttype import int_typedef +from pypy.objspace.std.longtype import long_typedef from pypy.objspace.std.complextype import complex_typedef from rpython.rlib.rarithmetic import LONG_BIT from rpython.rtyper.lltypesystem import rffi from rpython.tool.sourcetools import func_with_new_name from pypy.module.micronumpy.arrayimpl.voidbox import VoidBoxStorage -MIXIN_32 = (int_typedef,) if LONG_BIT == 32 else () -MIXIN_64 = (int_typedef,) if LONG_BIT == 64 else () +MIXIN_32 = (long_typedef,) if LONG_BIT == 32 else () +MIXIN_64 = (long_typedef,) if LONG_BIT == 64 else () # Is this the proper place for this? ENABLED_LONG_DOUBLE = False _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
