summaryrefslogtreecommitdiff
path: root/numpy/lib/__init__.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2008-04-08 04:56:12 +0000
committerTravis Oliphant <oliphant@enthought.com>2008-04-08 04:56:12 +0000
commit7d51a22a398230cf095eee397aea1a8ffd73c10a (patch)
treea34604272bccedb89e8f1df8e30c3836156b2f4f /numpy/lib/__init__.py
parent04fdbe54df00293b259458e31fa8d66a6c42c188 (diff)
downloadnumpy-7d51a22a398230cf095eee397aea1a8ffd73c10a.tar.gz
Add docs and examples for financial functions.
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r--numpy/lib/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py
index 6667dbc07..b011095f3 100644
--- a/numpy/lib/__init__.py
+++ b/numpy/lib/__init__.py
@@ -16,6 +16,7 @@ from getlimits import *
from utils import *
from arraysetops import *
from io import *
+from financial import *
import math
__all__ = ['emath','math']
@@ -31,6 +32,7 @@ __all__ += getlimits.__all__
__all__ += utils.__all__
__all__ += arraysetops.__all__
__all__ += io.__all__
+__all__ += financial.__all__
def test(level=1, verbosity=1):
from numpy.testing import NumpyTest