summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2008-07-21 19:19:27 +0000
committerpierregm <pierregm@localhost>2008-07-21 19:19:27 +0000
commit75779e8651774e1f86fd6656d851d22411e2224b (patch)
tree3c76316ecce1dbd291c908b56b61bb13dd5649ec
parent923ef804b6ab66033f90b2cba0b410032798a418 (diff)
downloadnumpy-75779e8651774e1f86fd6656d851d22411e2224b.tar.gz
core:
* suppressed the debugging info...
-rw-r--r--numpy/ma/core.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index 178ffe1b6..b02b175d0 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -2063,7 +2063,6 @@ masked_%(name)s(data = %(data)s,
If you want to modify the shape in place, please use ``a.shape = s``
"""
- print "SHAPE: %s" % str(s)
kwargs.update(order=kwargs.get('order','C'))
result = self._data.reshape(*s, **kwargs).view(type(self))
result._update_from(self)