[pypy-commit] pypy numpy-record-dtypes: a banch to implement record dtypes

fijal noreply at buildbot.pypy.org
Mon Feb 6 11:50:19 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-record-dtypes
Changeset: r52129:52434fe40e76
Date: 2012-02-06 12:45 +0200
http://bitbucket.org/pypy/pypy/changeset/52434fe40e76/

Log:	a banch to implement record dtypes

diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py
--- a/pypy/module/micronumpy/interp_dtype.py
+++ b/pypy/module/micronumpy/interp_dtype.py
@@ -3,10 +3,10 @@
 from pypy.interpreter.gateway import interp2app
 from pypy.interpreter.typedef import (TypeDef, GetSetProperty,
     interp_attrproperty, interp_attrproperty_w)
-from pypy.module.micronumpy import types, signature, interp_boxes
+from pypy.module.micronumpy import types, interp_boxes
 from pypy.rlib.objectmodel import specialize
 from pypy.rlib.rarithmetic import LONG_BIT
-from pypy.rpython.lltypesystem import lltype, rffi
+from pypy.rpython.lltypesystem import lltype
 
 
 UNSIGNEDLTR = "u"


More information about the pypy-commit mailing list