gak / pycallgraph

pycallgraph is a Python module that creates call graphs for Python programs.
GNU General Public License v2.0
1.83k stars 335 forks source link

values of arguments that passed on to each function at run time #91

Closed jmwebaze closed 11 years ago

jmwebaze commented 12 years ago

Is it possible to extend pycallgraph to inlcude the actualy values of arguments that passed on to each function at run time?

eg.

def Person (Name='John, age=12, sex='M') pass


| Person | | Total Time |

| Aruments Name='John, age=12, sex='M' |

gak commented 11 years ago

I didn't include arguments because logically you would want a new node for every combination of arguments.

Maybe the last argument as a sort of example of usage?