[pypy-commit] pypy numpy-record-dtypes: like this maybe?

fijal noreply at buildbot.pypy.org
Tue Feb 7 11:55:47 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-record-dtypes
Changeset: r52162:5b4c514f9ae8
Date: 2012-02-07 12:55 +0200
http://bitbucket.org/pypy/pypy/changeset/5b4c514f9ae8/

Log:	like this maybe?

diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py
--- a/pypy/module/micronumpy/types.py
+++ b/pypy/module/micronumpy/types.py
@@ -212,7 +212,7 @@
     def min(self, v1, v2):
         return min(v1, v2)
 
-class NonNativePrimitive(Primitive):
+class NonNativePrimitive(object):
     _mixin_ = True
     
     def _read(self, storage, width, i, offset):


More information about the pypy-commit mailing list