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 mproeller
Recipients mproeller
Date 2009-02-11.07:43:00
SpamBayes Score 1.7166714e-07
Marked as misclassified No
Message-id <1234338182.69.0.0258607971835.issue5215@psf.upfronthosting.co.za>
In-reply-to
Content
The following code produces problems:

import pdb
def func():
	b = 13
	pdb.set_trace()
	a = b + 2
	print a
func()

If I change the value of b (e.g. to 3) everything works fine
(print a => displays 5)
but if I want to change b (e.g. to 3) and display the value,
it is reset to 13
(and print a displays 15)
History
Date User Action Args
2009-02-11 07:43:02mproellersetrecipients: + mproeller
2009-02-11 07:43:02mproellersetmessageid: <1234338182.69.0.0258607971835.issue5215@psf.upfronthosting.co.za>
2009-02-11 07:43:01mproellerlinkissue5215 messages
2009-02-11 07:43:00mproellercreate