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 tismer
Recipients
Date 2002-05-27.23:44:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=105700

# test program for bdb buglet.
# usage:
# import pdb, bdbtest
# pdb.runcall(bdbtest.test)
#
# then, in the debugger, type "b 13":

def test():
	a=0
	a=1
	a=2
	a=3
	a=4
	a=5
	a=6
	a=7
	a=8
	a=9

# the breakpoint will be at "a=4"
# now try to continue with "c", and you
# will see it still single stepping.
History
Date User Action Args
2007-08-23 13:49:26adminlinkissue210682 messages
2007-08-23 13:49:26admincreate