From 19a94794c106aef993bb2af6a7ea11950e362d0d Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 29 Aug 2006 17:15:31 +0000 Subject: 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 * --- numpy/core/fromnumeric.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'numpy/core/fromnumeric.py') 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. -- cgit v1.2.1