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/c_support.py | |
parent | aa3c27cce3d0625f719b812c9e6b0aa73114c612 (diff) | |
download | numpy-0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26.tar.gz |
ran reindent.py to clean up whitespace
Diffstat (limited to 'numpy/f2py/lib/extgen/c_support.py')
-rw-r--r-- | numpy/f2py/lib/extgen/c_support.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/f2py/lib/extgen/c_support.py b/numpy/f2py/lib/extgen/c_support.py index baaca7d17..95ef1ac55 100644 --- a/numpy/f2py/lib/extgen/c_support.py +++ b/numpy/f2py/lib/extgen/c_support.py @@ -177,7 +177,7 @@ class CFunction(Component): %(CDeclaration)s %(CBody)s }''' - + container_options = dict( CArgument = dict(separator=', ', default='void'), CDeclaration = dict(default='<KILLLINE>', use_indent=True, ignore_empty_content=True, @@ -215,7 +215,7 @@ class CHeader(CLine): >>> h = CHeader('noddy.h') >>> print h.generate() #include "noddy.h" - + """ template = '#include "%(line)s"' @@ -288,6 +288,6 @@ extern \"C\" { def _test(): import doctest doctest.testmod() - + if __name__ == "__main__": _test() |