Issue #15812: Delete redundant max(start, 0)

Noticed by Serhiy Storchaka.
This commit is contained in:
Berker Peksag 2017-01-03 03:48:04 +03:00
parent 7b4e551091
commit 225b01b840
1 changed files with 0 additions and 1 deletions

View File

@ -1416,7 +1416,6 @@ def getframeinfo(frame, context=1):
except OSError: except OSError:
lines = index = None lines = index = None
else: else:
start = max(start, 0)
start = max(0, min(start, len(lines) - context)) start = max(0, min(start, len(lines) - context))
lines = lines[start:start+context] lines = lines[start:start+context]
index = lineno - 1 - start index = lineno - 1 - start