8000 BUG: Fix counter for abstract interfaces in f2py · numpy/numpy@4953cec · GitHub
[go: up one dir, main page]

Skip to content

Commit 4953cec

Browse files
committed
BUG: Fix counter for abstract interfaces in f2py
1 parent 8b74aa6 commit 4953cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/f2py/crackfortran.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ def crackline(line, reset=0):
735735
if reset > 0:
736736
fl = 0
737737
if f77modulename and neededmodule == groupcounter:
738-
fl = 2
738+
fl = 3
739739
while groupcounter > fl:
740740
outmess('crackline: groupcounter=%s groupname=%s\n' %
741741
(repr(groupcounter), repr(groupname)))

0 commit comments

Comments
 (0)
0