summaryrefslogtreecommitdiff
path: root/numpy/lib/__init__.py
diff options
context:
space:
mode:
authorabaecker <abaecker@localhost>2006-05-03 06:53:16 +0000
committerabaecker <abaecker@localhost>2006-05-03 06:53:16 +0000
commit30581a54d96448422cc550143e2b6fb860ef5c45 (patch)
tree92f7ecdf2454cdd6d5e8febe7dd12d84cfd9008a /numpy/lib/__init__.py
parentb2808893e27b969ffe7e9cf07020b0a3fbba42a2 (diff)
downloadnumpy-30581a54d96448422cc550143e2b6fb860ef5c45.tar.gz
fix: `emath` instead of `nmath`
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r--numpy/lib/__init__.py2
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__