summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/doc/DISTUTILS.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/doc/DISTUTILS.txt b/numpy/doc/DISTUTILS.txt
index 4620af0f0..d5d456683 100644
--- a/numpy/doc/DISTUTILS.txt
+++ b/numpy/doc/DISTUTILS.txt
@@ -74,7 +74,8 @@ Here follows a minimal example for a pure Python SciPy package
if __name__ == "__main__":
from numpy.distutils.core import setup
- setup(**configuration(top_path='').todict())
+ #setup(**configuration(top_path='').todict())
+ setup(configuration=configuration)
The first argument ``parent_package`` of the main configuration
function will contain a name of the parent SciPy package and the