summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
committercookedm <cookedm@localhost>2006-03-10 21:31:27 +0000
commitbf57380caa818b73a4c41409de6ff260425f9bb6 (patch)
treeb2c42e0fde172de5def0c91811845808c00e296e /numpy/lib/utils.py
parentf2db317c1fad63f1c85944ba8443b465e32774dc (diff)
downloadnumpy-bf57380caa818b73a4c41409de6ff260425f9bb6.tar.gz
Run reindent.py (script distributed with Python) over the source to remove extraneous whitespace
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r--numpy/lib/utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index 7e20c3c7a..e64f5d978 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -10,14 +10,14 @@ def issubclass_(arg1, arg2):
def issubsctype(arg1, arg2):
return issubclass(obj2sctype(arg1), obj2sctype(arg2))
-
+
def get_numpy_include():
- """Return the directory in the package that contains the numpy/*.h header
+ """Return the directory in the package that contains the numpy/*.h header
files.
-
+
Extension modules that need to compile against numpy should use this
function to locate the appropriate include directory. Using distutils:
-
+
import numpy
Extension('extension_name', ...
include_dirs=[numpy.get_numpy_include()])