From dbee46ab3ef89d1f55cd72d1a61151df19009346 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Mon, 3 Jul 2006 20:18:57 +0000 Subject: Change the name to ctypes_load_library --- numpy/lib/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/lib/utils.py') 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 -- cgit v1.2.1