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.

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}

share|improve this question
I would guess that something from the ast module 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:50
Could you explain your problem further? How complicated are the statements you're expecting? What is your final goal with this? – Tim Pietzcker Jan 14 at 14:53
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} – Srwe Jan 14 at 15:23
1  
@Srwe: you can probably squeeze out what's explicitly changed, but it'll be very hard to find all the variables which might be changed. a+b could in principle change lots of objects, not merely a and b, because the __add__ method of a could have a line like globals()['c'] = 19 in it.. – DSM Jan 14 at 15:27

1 Answer

Not sure what your goal is. Perhaps dis is what you're looking for?

>>> import dis
>>> dis.dis("x=a+b")
  1           0 LOAD_NAME                0 (a)
              3 LOAD_NAME                1 (b)
              6 BINARY_ADD
              7 STORE_NAME               2 (x)
             10 LOAD_CONST               0 (None)
             13 RETURN_VALUE
share|improve this answer
Thanks Tim. How can I get output of dis as dictionary? – Srwe Jan 14 at 18:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.