[Python-checkins] python/dist/src/Lib/test test_trace.py,1.11,1.12

mondragon at users.sourceforge.net mondragon at users.sourceforge.net
Mon Mar 22 14:23:49 EST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1179

Modified Files:
	test_trace.py 
Log Message:
Fix (really) for tight loop line events


Index: test_trace.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_trace.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** test_trace.py	22 Mar 2004 19:21:47 -0000	1.11
--- test_trace.py	22 Mar 2004 19:23:46 -0000	1.12
***************
*** 148,152 ****
          i = 0
          while 1:
!             print items[i]; i+=1
      except IndexError:
          pass
--- 148,152 ----
          i = 0
          while 1:
!             b = items[i]; i+=1
      except IndexError:
          pass
***************
*** 160,163 ****
--- 160,164 ----
                              (5, 'line'),
                              (5, 'line'),
+                             (5, 'line'),
                              (5, 'exception'),
                              (6, 'line'),




More information about the Python-checkins mailing list