diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
commit | e706c7d92c4ee41e8e995fb3838bd0931b57efb5 (patch) | |
tree | 015a057d49422774e49ed211a37c14105d03a713 /numpy/distutils/ccompiler.py | |
parent | c14d4fe25cb5cd482369734dd487ac8f376851c9 (diff) | |
download | numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz |
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r-- | numpy/distutils/ccompiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 2e06e6993..0a4e206fd 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -249,7 +249,7 @@ def new_compiler (plat=None, verbose=0, dry_run=0, force=0): - # Try first C compilers from scipy.distutils. + # Try first C compilers from numpy.distutils. if plat is None: plat = os.name try: @@ -261,11 +261,11 @@ def new_compiler (plat=None, if compiler is not None: msg = msg + " with '%s' compiler" % compiler raise DistutilsPlatformError, msg - module_name = "scipy.distutils." + module_name + module_name = "numpy.distutils." + module_name try: __import__ (module_name) except ImportError, msg: - print msg,'in scipy.distutils, trying from distutils..' + print msg,'in numpy.distutils, trying from distutils..' module_name = module_name[6:] try: __import__(module_name) |