1 message in org.python.python-bugs-list[ python-Bugs-765624 ] Cannot step in...
FromSent OnAttachments
SourceForge.netMar 22, 2004 2:35 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[ python-Bugs-765624 ] Cannot step in debugger if line # doesn't changeActions...
From:SourceForge.net (nore@sourceforge.net)
Date:Mar 22, 2004 2:35:56 pm
List:org.python.python-bugs-list

Bugs item #765624, was opened at 2003-07-03 17:42 Message generated for change (Comment added) made by mondragon You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=765624&group_id=5470

Category: Python Interpreter Core Group: Python 2.3

Status: Closed Resolution: Fixed

Priority: 5 Submitted By: John Ehresman (jpe) Assigned to: Nobody/Anonymous (nobody) Summary: Cannot step in debugger if line # doesn't change

Initial Comment: The debugger trace function is not called with a line event if the line number executed doesn't change. This happens when an infinite looop containing a single line is executed, such as:

while 1: print 1

A slightly more realistic example would be something like the following:

items = range(0, 10) try: i = 0 while 1: print items[i]; i += 1 except IndexError: pass

----------------------------------------------------------------------

Comment By: Nick Bastin (mondragon)

Date: 2004-03-22 14:35

Message: Logged In: YES user_id=430343

Fixed in:

ceval.c 2.386 test_trace.py 1.12

----------------------------------------------------------------------