[Numpy-svn] r4335 - trunk/numpy/f2py
numpy-svn at scipy.org
numpy-svn at scipy.org
Mon Oct 29 11:48:14 EDT 2007
Author: jarrod.millman
Date: 2007-10-29 10:48:12 -0500 (Mon, 29 Oct 2007)
New Revision: 4335
Modified:
trunk/numpy/f2py/rules.py
Log:
another typo
Modified: trunk/numpy/f2py/rules.py
===================================================================
--- trunk/numpy/f2py/rules.py 2007-10-29 15:37:11 UTC (rev 4334)
+++ trunk/numpy/f2py/rules.py 2007-10-29 15:48:12 UTC (rev 4335)
@@ -1200,7 +1200,7 @@
f.write('C This file is autogenerated with f2py (version:%s)\n'%(f2py_version))
f.write('C It contains Fortran 77 wrappers to fortran functions.\n')
lines = []
- for l in '\n\n'.join(funcwrappers)+'\n'.split('\n'):
+ for l in ('\n\n'.join(funcwrappers)+'\n').split('\n'):
if l and l[0]==' ':
while len(l)>=66:
lines.append(l[:66]+'\n &')
More information about the Numpy-svn
mailing list