summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-29 17:15:31 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-29 17:15:31 +0000
commit19a94794c106aef993bb2af6a7ea11950e362d0d (patch)
treeac3e83f9359e27e07fece6e13be58560de1bc74a /numpy/core/fromnumeric.py
parent775a47de7e2f4b039592d614e7ac3fda464975a8 (diff)
downloadnumpy-19a94794c106aef993bb2af6a7ea11950e362d0d.tar.gz
Fix problem with randn in matlib. Acutally add min, max, round, abs to the numpy name-space without over-writing builtins on from numpy import *
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index dfe233b6e..1942bda45 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -439,8 +439,6 @@ def amax(a, axis=None, out=None):
return _wrapit(a, 'max', axis, out)
return amax(axis, out)
-max = amax
-
def amin(a, axis=None, out=None):
"""Return the minimum of a along dimension axis.
"""
@@ -450,8 +448,6 @@ def amin(a, axis=None, out=None):
return _wrapit(a, 'min', axis, out)
return amin(axis, out)
-min = amin
-
def alen(a):
"""Return the length of a Python object interpreted as an array
of at least 1 dimension.
@@ -522,8 +518,6 @@ def round_(a, decimals=0, out=None):
around = round_
-round = round_
-
def mean(a, axis=None, dtype=None, out=None):
"""mean(a, axis=None, dtype=None)
Return the arithmetic mean.