From f48a54fc1eaddd135dcc235c241476493e34c516 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 8 Mar 2006 13:05:44 +0000 Subject: [PATCH 1/1] lib/bb/utils.py: Do not go past the buffer (this looks like copy and paste) --- lib/bb/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 9cbef23..978bde2 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -113,7 +113,7 @@ def better_compile(text, file, realfile): # print the environment of the method bb.error("Printing the environment of the function") min_line = max(1,e.lineno-4) - max_line = min(e.lineno+4,len(body)) + max_line = min(e.lineno+4,len(body)-1) for i in range(min_line,max_line+1): bb.error("\t%.4d:%s" % (i, body[i-1]) ) @@ -154,7 +154,7 @@ def better_exec(code, context, text, realfile): # print the environment of the method bb.error("Printing the environment of the function") min_line = max(1,line-4) - max_line = min(line+4,len(body)) + max_line = min(line+4,len(body)-1) for i in range(min_line,max_line+1): bb.error("\t%.4d:%s" % (i, body[i-1]) ) -- 2.7.4