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/f2py/__init__.py | |
parent | c14d4fe25cb5cd482369734dd487ac8f376851c9 (diff) | |
download | numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz |
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/f2py/__init__.py')
-rw-r--r-- | numpy/f2py/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/__init__.py b/numpy/f2py/__init__.py index 5c2c3e927..896156e16 100644 --- a/numpy/f2py/__init__.py +++ b/numpy/f2py/__init__.py @@ -21,7 +21,7 @@ def compile(source, ''' Build extension module from processing source with f2py. Read the source of this function for more information. ''' - from scipy.distutils.exec_command import exec_command + from numpy.distutils.exec_command import exec_command if source_fn is None: fname = os.path.join(tempfile.mktemp()+'.f') else: @@ -32,7 +32,7 @@ def compile(source, f.close() args = ' -c -m %s %s %s'%(modulename,fname,extra_args) - c = '%s -c "import scipy.f2py as f2py2e;f2py2e.main()" %s' %(sys.executable,args) + c = '%s -c "import numpy.f2py as f2py2e;f2py2e.main()" %s' %(sys.executable,args) s,o = exec_command(c) if source_fn is None: try: os.remove(fname) |