summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-07-29 21:40:00 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-07-29 22:58:58 -0600
commit2243feef3ca8fb8c511b71b26d6bf6114e44c069 (patch)
tree10ed745573d556ed806a87069a32c2a87b4e28e2
parent778af02eb7c1668e751f435cd2a4952a362a0433 (diff)
downloadnumpy-2243feef3ca8fb8c511b71b26d6bf6114e44c069.tar.gz
BUG: Fix typo in hermite_e.py.
The hermepow function was incorrectly listed in __all__ as hermpow.
-rw-r--r--numpy/polynomial/hermite_e.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py
index 874b42470..9817d29b7 100644
--- a/numpy/polynomial/hermite_e.py
+++ b/numpy/polynomial/hermite_e.py
@@ -67,7 +67,7 @@ from . import polyutils as pu
from ._polybase import ABCPolyBase
__all__ = ['hermezero', 'hermeone', 'hermex', 'hermedomain', 'hermeline',
- 'hermeadd', 'hermesub', 'hermemulx', 'hermemul', 'hermediv', 'hermpow',
+ 'hermeadd', 'hermesub', 'hermemulx', 'hermemul', 'hermediv', 'hermepow',
'hermeval',
'hermeder', 'hermeint', 'herme2poly', 'poly2herme', 'hermefromroots',
'hermevander', 'hermefit', 'hermetrim', 'hermeroots', 'HermiteE',