Improved readability of utils.datetime_safe._findall().

This commit is contained in:
Srinivas Reddy Thatiparthy 2018-01-02 23:01:06 +05:30 committed by Tim Graham
parent 47a99d7012
commit acd3baf2ae
1 changed files with 5 additions and 5 deletions

View File

@ -61,12 +61,12 @@ def _findall(text, substr):
# Also finds overlaps # Also finds overlaps
sites = [] sites = []
i = 0 i = 0
while 1: while True:
j = text.find(substr, i) i = text.find(substr, i)
if j == -1: if i == -1:
break break
sites.append(j) sites.append(i)
i = j + 1 i += 1
return sites return sites