diff options
author | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 14:58:18 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 14:58:18 +0000 |
commit | 0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26 (patch) | |
tree | c7609a2a685fd5bff235d812b8c5705621216f4c /numpy/f2py/lib/extgen/setup_py.py | |
parent | aa3c27cce3d0625f719b812c9e6b0aa73114c612 (diff) | |
download | numpy-0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26.tar.gz |
ran reindent.py to clean up whitespace
Diffstat (limited to 'numpy/f2py/lib/extgen/setup_py.py')
-rw-r--r-- | numpy/f2py/lib/extgen/setup_py.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/f2py/lib/extgen/setup_py.py b/numpy/f2py/lib/extgen/setup_py.py index 665ef5619..da1d84943 100644 --- a/numpy/f2py/lib/extgen/setup_py.py +++ b/numpy/f2py/lib/extgen/setup_py.py @@ -51,7 +51,7 @@ class SetupPy(Component): >>> import SetupPy_doctest as mypackage >>> print mypackage.foo.__doc__ #doctest: +ELLIPSIS This module 'foo' is generated with ExtGen from NumPy version... - + """ template_setup_py_start = '''\ def configuration(parent_package='', top_path = ''): @@ -88,7 +88,7 @@ if __name__ == "__main__": self += init_py self += setup_py - + map(self.add, components) return self @@ -115,10 +115,10 @@ if __name__ == "__main__": self.info('leaving %r directory' % (self.path)) return r - + def _test(): import doctest doctest.testmod() - + if __name__ == "__main__": _test() |