This commit is contained in:
Miroslav Stampar 2015-09-30 10:13:19 +02:00
parent 5ce4d4d2ec
commit a1a7161fab

View File

@ -128,9 +128,16 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
count += 1 count += 1
else: else:
break break
if count: if count:
seq1 = seq1[count:] try:
seq2 = seq2[count:] _seq1 = seq1[count:]
_seq2 = seq2[count:]
except MemoryError:
pass
else:
seq1 = _seq1
seq2 = _seq2
while True: while True:
try: try: