[pypy-commit] pypy backend-vector-ops: more disabling

fijal noreply at buildbot.pypy.org
Tue Feb 21 13:35:50 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: backend-vector-ops
Changeset: r52722:a92fc8dd58c6
Date: 2012-02-21 05:35 -0700
http://bitbucket.org/pypy/pypy/changeset/a92fc8dd58c6/

Log:	more disabling

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
@@ -164,6 +164,7 @@
         except ValueError:
             raise OperationError(space.w_TypeError, space.wrap("data type not understood"))
     if char == 'S':
+        raise NotImplementedError
         itemtype = types.StringType(size)
         basename = 'string'
         num = 18
@@ -175,6 +176,7 @@
         raise OperationError(space.w_NotImplementedError, space.wrap(
             "pure void dtype"))
     else:
+        raise NotImplementedError
         assert char == 'U'
         basename = 'unicode'
         itemtype = types.UnicodeType(size)
@@ -384,7 +386,7 @@
             kind=STRINGLTR,
             name='string',
             char='S',
-            w_box_type = space.gettypefor(interp_boxes.W_StringBox),
+            w_box_type = None,#space.gettypefor(interp_boxes.W_StringBox),
             alternate_constructors=[space.w_str],
         )
         self.w_unicodedtype = W_Dtype(
@@ -393,7 +395,7 @@
             kind=UNICODELTR,
             name='unicode',
             char='U',
-            w_box_type = space.gettypefor(interp_boxes.W_UnicodeBox),
+            w_box_type = None,#space.gettypefor(interp_boxes.W_UnicodeBox),
             alternate_constructors=[space.w_unicode],
         )
         self.w_voiddtype = W_Dtype(


More information about the pypy-commit mailing list