diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-02-10 15:08:50 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-02-10 15:09:10 -0500 |
commit | 2123f0a2f932f991a5209358a3aae183700c71ab (patch) | |
tree | 5555a8b1a8883a1ced2b6550c75ba428f4c61e4b /scripts/maint/display_callgraph.py | |
parent | 3014bfb61b7026ab2045cfd14842f313493e9c14 (diff) | |
download | tor-2123f0a2f932f991a5209358a3aae183700c71ab.tar.gz tor-2123f0a2f932f991a5209358a3aae183700c71ab.zip |
Make the callgraph module-aware
Diffstat (limited to 'scripts/maint/display_callgraph.py')
-rwxr-xr-x | scripts/maint/display_callgraph.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/maint/display_callgraph.py b/scripts/maint/display_callgraph.py index 211bfda28d..c9001c6d96 100755 --- a/scripts/maint/display_callgraph.py +++ b/scripts/maint/display_callgraph.py @@ -4,6 +4,8 @@ import cPickle data = cPickle.load(open("callgraph.pkl")) +# data = data['modItems'] + callgraph = data['callgraph'] closure = data['closure'] sccs = data['sccs'] |