diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:14:48 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:14:48 +0000 |
commit | 064d50496ce946cb54e0901ac10967d9e0126b20 (patch) | |
tree | 84b41e7e95bf4b9b34a0da92fa9133665e50d48e /numpy/lib/__init__.py | |
parent | 1c321def2841860d97cd335a6a34fc8abed4a548 (diff) | |
download | numpy-064d50496ce946cb54e0901ac10967d9e0126b20.tar.gz |
Move finfo into core.
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r-- | numpy/lib/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 07f6d5c27..5af08b23f 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -11,8 +11,6 @@ from ufunclike import * import scimath as emath from polynomial import * -from machar import * -from getlimits import * #import convertcode from utils import * from arraysetops import * @@ -30,8 +28,6 @@ __all__ += stride_tricks.__all__ __all__ += twodim_base.__all__ __all__ += ufunclike.__all__ __all__ += polynomial.__all__ -__all__ += machar.__all__ -__all__ += getlimits.__all__ __all__ += utils.__all__ __all__ += arraysetops.__all__ __all__ += io.__all__ |