Reputation: 25
I tried to debug a python script in Eclipse and I changed the value for a variable and after a step in the value was not kept.
Why the new value is not kept? This is a bug?
Upvotes: 1
Views: 205
Reputation: 25362
It depends a lot on the use case -- because of some Python shortcomings, it's expected that it doesn't work in some scenarios.
Now, to determine if that's the case for your particular use case, you need to provide more information, such as the actual code, Python version and PyDev version.
Upvotes: 1