summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py1
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