From ee6c9b8613336912bea827b607f7454c5368cd57 Mon Sep 17 00:00:00 2001 From: Nicholas Bastin Date: Mon, 22 Mar 2004 19:23:46 +0000 Subject: [PATCH] Fix (really) for tight loop line events --- Lib/test/test_trace.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index 4103794ee3b..6aac8df8ae6 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -147,7 +147,7 @@ def tightloop_example(): try: i = 0 while 1: - print items[i]; i+=1 + b = items[i]; i+=1 except IndexError: pass @@ -159,6 +159,7 @@ tightloop_example.events = [(0, 'call'), (5, 'line'), (5, 'line'), (5, 'line'), + (5, 'line'), (5, 'exception'), (6, 'line'), (7, 'line'),