[pypy-commit] pypy missing-ndarray-attributes: remove debug cruft

mattip noreply at buildbot.pypy.org
Mon Feb 4 13:38:40 CET 2013


Author: Matti Picus <matti.picus at gmail.com>
Branch: missing-ndarray-attributes
Changeset: r60867:d8a4df50c05a
Date: 2013-02-04 12:22 +0200
http://bitbucket.org/pypy/pypy/changeset/d8a4df50c05a/

Log:	remove debug cruft

diff --git a/pypy/module/micronumpy/arrayimpl/sort.py b/pypy/module/micronumpy/arrayimpl/sort.py
--- a/pypy/module/micronumpy/arrayimpl/sort.py
+++ b/pypy/module/micronumpy/arrayimpl/sort.py
@@ -19,7 +19,6 @@
 def make_sort_function(space, itemtype, comp_type, count=1):
     TP = itemtype.T
     step = rffi.sizeof(TP)
-    print itemtype
     
     class Repr(object):
         def __init__(self, index_stride_size, stride_size, size, values,
@@ -164,7 +163,6 @@
 all_types = (types.all_float_types) # + types.all_complex_types +
             # types.all_int_types)
 all_types = [i for i in all_types if not '_mixin_' in i[0].__dict__]
-all_types = [i for i in all_types if not 'NonNative' in str(i[0])]
 all_types = unrolling_iterable(all_types)
 
 class SortCache(object):


More information about the pypy-commit mailing list