diff options
author | abaecker <abaecker@localhost> | 2006-05-03 06:53:16 +0000 |
---|---|---|
committer | abaecker <abaecker@localhost> | 2006-05-03 06:53:16 +0000 |
commit | 30581a54d96448422cc550143e2b6fb860ef5c45 (patch) | |
tree | 92f7ecdf2454cdd6d5e8febe7dd12d84cfd9008a | |
parent | b2808893e27b969ffe7e9cf07020b0a3fbba42a2 (diff) | |
download | numpy-30581a54d96448422cc550143e2b6fb860ef5c45.tar.gz |
fix: `emath` instead of `nmath`
-rw-r--r-- | numpy/lib/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 286f5bfe5..47e3f9d14 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -18,7 +18,7 @@ from utils import * from arraysetops import * import math -__all__ = ['nmath','math'] +__all__ = ['emath','math'] __all__ += type_check.__all__ __all__ += index_tricks.__all__ __all__ += function_base.__all__ |