summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
diff options
context:
space:
mode:
authorTim Leslie <tim.leslie@gmail.com>2007-01-09 04:45:31 +0000
committerTim Leslie <tim.leslie@gmail.com>2007-01-09 04:45:31 +0000
commite56a09af9e696129b92e7487bccbc3713568fc5b (patch)
tree1257c10ae62f2847ac22f48e502eafeef7632820 /numpy/core/defmatrix.py
parent4d9b87ec11dc268bb9069831deab466ffe47ad93 (diff)
downloadnumpy-e56a09af9e696129b92e7487bccbc3713568fc5b.tar.gz
clean up unused imports and bad whitespace
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r--numpy/core/defmatrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py
index e64fd8c6d..58460265a 100644
--- a/numpy/core/defmatrix.py
+++ b/numpy/core/defmatrix.py
@@ -2,7 +2,6 @@ __all__ = ['matrix', 'bmat', 'mat', 'asmatrix']
import numeric as N
from numeric import concatenate, isscalar, binary_repr
-import types
import string as str_
import sys
@@ -238,6 +237,7 @@ class matrix(N.ndarray):
over all dimensions. This preserves the orientation of the
result as a row or column.
"""
+ # FIXME: should out=None be used here, or should it just be out?
return N.ndarray.sum(self, axis, dtype, out=None)._align(axis)
def mean(self, axis=None, out=None):