Commit ee6c9b86 authored by Nicholas Bastin's avatar Nicholas Bastin

Fix (really) for tight loop line events

parent fa7bec7e
......@@ -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'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment