From fa0842ffa749a00d0573f7ab803db450b9d1c7c7 Mon Sep 17 00:00:00 2001 From: Pearu Peterson Date: Sat, 24 Jul 2010 12:30:08 +0000 Subject: f2py: fixed issue 1533 (scanning pyf files will report lines that do not match known patterns). --- numpy/f2py/crackfortran.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy') diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py index 9f6f7c710..032901af9 100755 --- a/numpy/f2py/crackfortran.py +++ b/numpy/f2py/crackfortran.py @@ -589,7 +589,7 @@ def crackline(line,reset=0): return analyzeline(m,'callfun',line) return - if verbose>1: + if verbose>1 or (verbose==1 and currentfilename.lower().endswith('.pyf')): previous_context = None outmess('crackline:%d: No pattern for line\n'%(groupcounter)) return -- cgit v1.2.1