mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
9 lines
283 B
Python
Executable file
9 lines
283 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import cPickle
|
|
|
|
callgraph = cPickle.load(open("callgraph.cp"))
|
|
closure = cPickle.load(open("callgraph_closure.cp"))
|
|
|
|
for n_reachable, fn in sorted(list((len(r), fn) for fn, r in closure.iteritems())):
|
|
print "%s can reach %s other functions." %(fn, n_reachable)
|