8000 Pep8 numpy polynomial by charris · Pull Request #4924 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

Pep8 numpy polynomial #4924

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 4, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
BUG: Fix typo in hermite_e.py.
The hermepow function was incorrectly listed in __all__ as hermpow.
  • Loading branch information
charris committed Jul 30, 2014
commit 2243feef3ca8fb8c511b71b26d6bf6114e44c069
2 changes: 1 addition & 1 deletion numpy/polynomial/hermite_e.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
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',
Expand Down
0