Author: Maciej Fijalkowski <[email protected]>
Branch: backend-vector-ops
Changeset: r52721:a45b3cbb09c3
Date: 2012-02-21 05:27 -0700
http://bitbucket.org/pypy/pypy/changeset/a45b3cbb09c3/

Log:    disable it completely

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
@@ -226,14 +226,14 @@
         dtype.itemtype.store(self.arr, 1, self.ofs, ofs,
                              dtype.coerce(space, w_value))
 
-class W_CharacterBox(W_FlexibleBox):
-    pass
+#class W_CharacterBox(W_FlexibleBox):
+#    pass
 
-class W_StringBox(W_CharacterBox):
-    pass
+#class W_StringBox(W_CharacterBox):
+#    pass
 
-class W_UnicodeBox(W_CharacterBox):
-    pass
+#class W_UnicodeBox(W_CharacterBox):
+#    pass
 
 W_GenericBox.typedef = TypeDef("generic",
     __module__ = "numpypy",
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
@@ -465,7 +465,7 @@
         }
         typeinfo_partial = {
             'Generic': interp_boxes.W_GenericBox,
-            'Character': interp_boxes.W_CharacterBox,
+            #'Character': interp_boxes.W_CharacterBox,
             'Flexible': interp_boxes.W_FlexibleBox,
             'Inexact': interp_boxes.W_InexactBox,
             'Integer': interp_boxes.W_IntegerBox,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to