diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-29 17:15:31 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-29 17:15:31 +0000 |
commit | 19a94794c106aef993bb2af6a7ea11950e362d0d (patch) | |
tree | ac3e83f9359e27e07fece6e13be58560de1bc74a /numpy/core/numeric.py | |
parent | 775a47de7e2f4b039592d614e7ac3fda464975a8 (diff) | |
download | numpy-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/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index cd23c7cc0..f7733a92a 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -95,8 +95,6 @@ def extend_all(module): extend_all(umath) extend_all(numerictypes) -abs = absolute - newaxis = None ndarray = multiarray.ndarray |