Suppose I have a Python function as defined below:
def foo(arg1,arg2): #do something with args a = arg1 + arg2 return a
I can g
I believe that variable names aren't stored in pyc/pyd/pyo files, so you can not retrieve the exact code lines if you don't have source files.