Message81631
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) |
|
Date |
User |
Action |
Args |
2009-02-11 07:43:02 | mproeller | set | recipients:
+ mproeller |
2009-02-11 07:43:02 | mproeller | set | messageid: <1234338182.69.0.0258607971835.issue5215@psf.upfronthosting.co.za> |
2009-02-11 07:43:01 | mproeller | link | issue5215 messages |
2009-02-11 07:43:00 | mproeller | create | |
|