I'd like to develop a small debugging tool for python programs.In Dynamic Slicing How can I find the variables that are accessed in a statement? And find the type of access (read or write) for those variables (in Python).### Write: A statement can change the program state Read : A statement can read the program state .**For example in these 4 lines we have: (1) x = a+b => write{x} & reads{a,b} (2)y=6 => write{y}&reads{} (3) while(n>1) => write{} &reads{n} (4) n=n-1 write{n} & reads{n}
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Not sure what your goal is. Perhaps
|
|||
|
|

astmodule would be helpful here. However, this isn't really well defined. What about function calls?func = lambda lst,x: lst[3:] = x; x = func(lst,x)– mgilson Jan 14 at 14:50a+bcould in principle change lots of objects, not merelyaandb, because the__add__method ofacould have a line likeglobals()['c'] = 19in it.. – DSM Jan 14 at 15:27