diff options
Diffstat (limited to 'numpy/f2py/auxfuncs.py')
-rw-r--r-- | numpy/f2py/auxfuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/auxfuncs.py b/numpy/f2py/auxfuncs.py index 18eea6520..fe037f065 100644 --- a/numpy/f2py/auxfuncs.py +++ b/numpy/f2py/auxfuncs.py @@ -575,7 +575,7 @@ def getrestdoc(rout): return rout['f2pymultilines'].get(k,None) def gentitle(name): - l=(80-len(name)-6)/2 + l=(80-len(name)-6)//2 return '/*%s %s %s*/'%(l*'*',name,l*'*') def flatlist(l): |