diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-03 20:18:57 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-03 20:18:57 +0000 |
commit | dbee46ab3ef89d1f55cd72d1a61151df19009346 (patch) | |
tree | 2602809444b25d3ed391b713536aa5703c996111 /numpy/lib/utils.py | |
parent | 7a90a212488d7a55a939b3865b5236108fa28325 (diff) | |
download | numpy-dbee46ab3ef89d1f55cd72d1a61151df19009346.tar.gz |
Change the name to ctypes_load_library
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index dbb17ec60..bd453f617 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -4,7 +4,7 @@ from numpy.core.multiarray import dtype __all__ = ['issubclass_', 'get_numpy_include', 'issubsctype', 'issubdtype', 'deprecate', - 'get_include', 'load_ctypes_library'] + 'get_include', 'ctypes_load_library'] def issubclass_(arg1, arg2): try: @@ -35,7 +35,7 @@ def get_include(): return include_dirs[0] # Adapted from Albert Strasheim -def load_ctypes_library(libname, loader_path): +def ctypes_load_library(libname, loader_path): if '.' not in libname: if sys.platform == 'win32': libname = '%s.dll' % libname |