diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-15 09:53:49 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-15 09:53:49 +0000 |
commit | fcee1ad856089a7ecb7b6865d280c0273dacb638 (patch) | |
tree | 8f2256c27deeb5948e65664909cebfa5c56f50e5 /numpy/__init__.py | |
parent | 9a0c3ebd59782e352b3fc6357577751065ff691f (diff) | |
download | numpy-fcee1ad856089a7ecb7b6865d280c0273dacb638.tar.gz |
import ctypeslib on numpy load and change name from ctypes_load_library to load_library
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 42f987b24..e864fb9b2 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -39,12 +39,13 @@ else: import linalg import fft import random + import ctypeslib __all__ = ['__version__', 'pkgload', 'PackageLoader', 'ScipyTest', 'NumpyTest', 'show_config'] __all__ += core.__all__ __all__ += lib.__all__ - __all__ += ['linalg', 'fft', 'random'] + __all__ += ['linalg', 'fft', 'random', 'ctypeslib'] if __doc__ is not None: __doc__ += """ |