diff options
author | pierregm <pierregm@localhost> | 2008-07-21 19:19:27 +0000 |
---|---|---|
committer | pierregm <pierregm@localhost> | 2008-07-21 19:19:27 +0000 |
commit | 75779e8651774e1f86fd6656d851d22411e2224b (patch) | |
tree | 3c76316ecce1dbd291c908b56b61bb13dd5649ec /numpy | |
parent | 923ef804b6ab66033f90b2cba0b410032798a418 (diff) | |
download | numpy-75779e8651774e1f86fd6656d851d22411e2224b.tar.gz |
core:
* suppressed the debugging info...
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ma/core.py | 1 |
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) |