summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2009-01-08 21:51:04 +0000
committerpierregm <pierregm@localhost>2009-01-08 21:51:04 +0000
commitb374b05bf6f25ff8aa1f738c83a2427d2ff822b0 (patch)
treef3a3c505191d26c51997ed6249c4688f5532b78c /numpy/ma/core.py
parenta5da87c6254f183dc068d912dde9fd00341d926f (diff)
downloadnumpy-b374b05bf6f25ff8aa1f738c83a2427d2ff822b0.tar.gz
* Remove a debugging print statement.
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r--numpy/ma/core.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index b0da8c200..76982f5ef 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -1392,7 +1392,6 @@ def _recursive_filled(a, mask, fill_value):
names = a.dtype.names
for name in names:
current = a[name]
- print "Name: %s : %s" % (name, current)
if current.dtype.names:
_recursive_filled(current, mask[name], fill_value[name])
else:
@@ -2169,9 +2168,6 @@ class MaskedArray(ndarray):
if m.dtype.names:
result = self._data.copy()
_recursive_filled(result, self._mask, fill_value)
-# for n in result.dtype.names:
-# field = result[n]
-# np.putmask(field, self._mask[n], fill_value[n])
elif not m.any():
return self._data
else: