[pypy-commit] pypy py3k: int_typedef -> long_typedef

pjenvey noreply at buildbot.pypy.org
Tue Apr 9 00:42:06 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
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


More information about the pypy-commit mailing list