diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-09-30 09:38:09 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-09-30 09:38:09 +0000 |
commit | 7ee2b4372573ec322a208eeb3e4ebed5c7797dc4 (patch) | |
tree | b1dc18a4c4cc8b1d9c6f39e62cccd357aa08e72d /scipy/base/numeric.py | |
parent | 759d4d8909a72087235c52d58a123e97854e45ed (diff) | |
download | numpy-7ee2b4372573ec322a208eeb3e4ebed5c7797dc4.tar.gz |
Fixed and improved scipy.distutils.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index f13148dcb..dc380ed81 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -370,18 +370,4 @@ inf = PINF nan = NAN from oldnumeric import * -def get_scipy_include(): - """Return the directory in the package that contains the scipy/*.h header - files. - - Extension modules that need to compile against scipy.base should use this - function to locate the appropriate include directory. Using distutils: - - import scipy - Extension('extension_name', ... - include_dirs=[scipy.get_scipy_include()]) - """ - import os - dir, fn = os.path.split(__file__) - return os.path.join(dir, 'include') |