summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorMatthew Brett <matthew.brett@gmail.com>2008-02-13 02:44:43 +0000
committerMatthew Brett <matthew.brett@gmail.com>2008-02-13 02:44:43 +0000
commit90543a643b80acd8fcb3a1288a7defef6c541352 (patch)
tree3d8a105917b353d7ff189dae4881887a7cd56275 /numpy/lib/function_base.py
parent2b608e1965ec4effbcf0e69fc1108339acf7f9c9 (diff)
downloadnumpy-90543a643b80acd8fcb3a1288a7defef6c541352.tar.gz
Fix missing mean for median calculation, missing dtype from defmatrix mean signature
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 93b8a1dcd..8c75031fa 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -20,7 +20,7 @@ from numpy.core.numeric import ScalarType, dot, where, newaxis, intp, \
integer, isscalar
from numpy.core.umath import pi, multiply, add, arctan2, \
frompyfunc, isnan, cos, less_equal, sqrt, sin, mod, exp, log10
-from numpy.core.fromnumeric import ravel, nonzero, choose, sort
+from numpy.core.fromnumeric import ravel, nonzero, choose, sort, mean
from numpy.core.numerictypes import typecodes
from numpy.lib.shape_base import atleast_1d, atleast_2d
from numpy.lib.twodim_base import diag