Fix (really) for tight loop line events
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py
index 4103794..6aac8df 100644
--- a/Lib/test/test_trace.py
+++ b/Lib/test/test_trace.py
@@ -147,7 +147,7 @@
     try:
         i = 0
         while 1:
-            print items[i]; i+=1
+            b = items[i]; i+=1
     except IndexError:
         pass
 
@@ -159,6 +159,7 @@
                             (5, 'line'),
                             (5, 'line'),
                             (5, 'line'),
+                            (5, 'line'),
                             (5, 'exception'),
                             (6, 'line'),
                             (7, 'line'),