[Epydoc-devel] callgraph howto?
Brought to you by:
edloper
|
From: Neal B. <ndb...@gm...> - 2007-11-13 16:20:07
|
--- test.py ---
def f():
return 1
def g():
return f()
g()
---------------
python -m cProfile -o prof test.py
epydoc --pstat=prof --graph=all test.py
I don't see any call graph in the html output. No errors either. What am I
doing wrong? (epydoc-3.0b1)
|