summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-06-15 11:22:53 +0000
committerRaymond Hettinger <python@rcn.com>2004-06-15 11:22:53 +0000
commitdeaedf163c8a2f2b32f5a7f600ffd3fe12e85c5b (patch)
tree56d36837ce421a2fa3800793e38ffb268ae881b7 /Lib
parent00faed3232e89c7b0d18769c3b07747be25f1344 (diff)
downloadcpython-deaedf163c8a2f2b32f5a7f600ffd3fe12e85c5b.tar.gz
SF bug #973092: inspect.getframeinfo bug if 'context' is to big
Make sure the start argument is not negative.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 8a58ce9505..12c9cb757b 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -756,7 +756,7 @@ def getframeinfo(frame, context=1):
lines = index = None
else:
start = max(start, 1)
- start = min(start, len(lines) - context)
+ start = max(0, min(start, len(lines) - context))
lines = lines[start:start+context]
index = lineno - 1 - start
else: