How do I change a value while debugging python with pdb

De openkb
Aller à : Navigation, rechercher

Sommaire

Questions

I want to run pdb, step through the code, and at some point change the value pointed at by some name. So I might want to change the value pointed at by the name stationLat . But it seems I can t. Here s the example:

>>> import extractPercentiles
>>> import pdb
>>> pdb.run( "extractPercentiles.extractOneStation()" )
> <string>(1)<module>()->None
(Pdb) s
--Call--
> /scratch/extractPercentiles.py(96)extractOneStation()
-> def extractOneStation() :
(Pdb) tbreak 132
Breakpoint 3 at /scratch/extractPercentiles.py:132
(Pdb) c

Deleted breakpoint 3
> /scratch/extractPercentiles.py(132)extractOneStation()
-> stationLon = float(stationLoc[3])

So now I m at a place where I would like to change the value of stationlat. Pdb appears to allow me to set stationLat to a new value, but when I inspect the value, it is unchanged:

(Pdb) stationLat
-34.171100000000003
(Pdb) stationLat = -40
(Pdb) stationLat   
-34.171100000000003
(Pdb) !stationLat = -40
(Pdb) stationLat
-34.171100000000003
(Pdb) 

You can see I tried using ! as well, without success.

The pdb manual says I should be able to change variables:

 Commands that the debugger doesn’t recognize are assumed to be Python statements and are executed in the context of the program being debugged. Python statements can also be prefixed with an exclamation point (!). This is a powerful way to inspect the program being debugged;    it is even possible to change a variable      or call a function

Is this a question of scope? Is it to do with the way I have started pdb? I tried the embedded "pdb.set_trace" idiom and I got the same result.

Thanks for reading.

Answers

http://bugs.python.org/issue5215 http://bugs.python.org/issue5215

Source

License : cc by-sa 3.0

http://stackoverflow.com/questions/7912820/how-do-i-change-a-value-while-debugging-python-with-pdb

Related

Outils personnels
Espaces de noms

Variantes
Actions
Navigation
Outils