diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-14 18:47:54 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-14 18:47:54 +0000 |
commit | 4cd71bf7016873c4f75d3206c516cf8505eda31d (patch) | |
tree | 10c7150b64591ca4b4feddfbac3ab7fa21983db0 /numpy/core/numeric.py | |
parent | 11869d369ab71f39d4a152260f88fae4df276378 (diff) | |
download | numpy-4cd71bf7016873c4f75d3206c516cf8505eda31d.tar.gz |
Fix bug in _myunincmp.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 5673d8488..5c1fac0c4 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -169,7 +169,6 @@ def convolve(a,v,mode='full'): mode = _mode_from_name(mode) return multiarray.correlate(a,asarray(v)[::-1],mode) - inner = multiarray.inner dot = multiarray.dot |