Skip to content

Commit 95734e8

Browse files
committed
maximal bug fix
1 parent 20730d6 commit 95734e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/difflib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2425,7 +2425,7 @@ def findall(self, seq1, start1=0, stop1=None, start2=0, stop2=None, *,
24252425
return
24262426
k = last[2]
24272427
for block in it:
2428-
if block[2] < k:
2428+
if block[2] <= k:
24292429
if mink <= k and (maxk is None or k <= maxk):
24302430
one_mk = 1 - k
24312431
yield (last[0] + one_mk, last[1] + one_mk, k)

0 commit comments

Comments
 (0)