diff options
author | Robert Kern <robert.kern@gmail.com> | 2005-09-28 02:55:05 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2005-09-28 02:55:05 +0000 |
commit | 6ac5b1d4ac571b7ab6a2f969023130c732ad3a1a (patch) | |
tree | 09c78e3c096e003011cd396a2131b9c081e79554 /scipy/base/numeric.py | |
parent | 7ac07af35780fb7644ee7bb27c11ac4abe59ecfd (diff) | |
download | numpy-6ac5b1d4ac571b7ab6a2f969023130c732ad3a1a.tar.gz |
r3470@803638d6: kern | 2005-09-26 17:50:04 -0700
Don't install headers under /include/python2.4 but into the package
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index 832a0bd15..b44dce62d 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -346,3 +346,9 @@ setbufsize(UFUNC_BUFSIZE_DEFAULT,where='builtin') inf = PINF nan = NAN from oldnumeric import * + +def get_scipy_include(): + import os + dir, fn = os.path.split(__file__) + return os.path.join(dir, 'include', 'scipy') + |