diff options
author | Matthew Brett <matthew.brett@gmail.com> | 2008-02-13 02:26:58 +0000 |
---|---|---|
committer | Matthew Brett <matthew.brett@gmail.com> | 2008-02-13 02:26:58 +0000 |
commit | 2b608e1965ec4effbcf0e69fc1108339acf7f9c9 (patch) | |
tree | 1fce7e58097a3b220f40c59540946afcd02449b3 /numpy/lib/function_base.py | |
parent | e072ab05f8ffdef547c8555c44b2355a73fdf8d4 (diff) | |
download | numpy-2b608e1965ec4effbcf0e69fc1108339acf7f9c9.tar.gz |
Fix, uncomment import in median doctest
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 08e75aee8..93b8a1dcd 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1245,7 +1245,7 @@ def median(a, axis=0, out=None, overwrite_input=False): Examples -------- >>> import numpy as np - >>> # import numpy median as median + >>> from numpy import median >>> a = np.array([[10, 7, 4], [3, 2, 1]]) >>> a array([[10, 7, 4], |