summaryrefslogtreecommitdiff
path: root/numpy/f2py/docs/usersguide/setup_example.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 19:00:27 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 19:00:27 +0000
commite706c7d92c4ee41e8e995fb3838bd0931b57efb5 (patch)
tree015a057d49422774e49ed211a37c14105d03a713 /numpy/f2py/docs/usersguide/setup_example.py
parentc14d4fe25cb5cd482369734dd487ac8f376851c9 (diff)
downloadnumpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/f2py/docs/usersguide/setup_example.py')
-rw-r--r--numpy/f2py/docs/usersguide/setup_example.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/docs/usersguide/setup_example.py b/numpy/f2py/docs/usersguide/setup_example.py
index a7d27403a..e5f5e8441 100644
--- a/numpy/f2py/docs/usersguide/setup_example.py
+++ b/numpy/f2py/docs/usersguide/setup_example.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# File: setup_example.py
-from scipy_distutils.core import Extension
+from numpy_distutils.core import Extension
ext1 = Extension(name = 'scalar',
sources = ['scalar.f'])
@@ -9,7 +9,7 @@ ext2 = Extension(name = 'fib2',
sources = ['fib2.pyf','fib1.f'])
if __name__ == "__main__":
- from scipy_distutils.core import setup
+ from numpy_distutils.core import setup
setup(name = 'f2py_example',
description = "F2PY Users Guide examples",
author = "Pearu Peterson",