This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author isandler
Recipients
Date 2004-11-07.04:42:29
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=971153


The original bug report gives an example where the code to
debug was specified from python's shell. I am not quite  how
pdb is supposed to behave in this case.. With the patch, it
does seem to enter in the right frame, but it can't list the
code.

The patch does work when the code comes from a file.
 
.def foo():
     import pdb 
     pdb.set_trace()
     print "tracing 1"
     print "tracing 2"
 foo()
History
Date User Action Args
2007-08-23 15:40:31adminlinkissue1061767 messages
2007-08-23 15:40:31admincreate