Sections
Timeline
View Tickets
New Ticket
Sub-Sections
Download
Unified Diff
Zip Archive
Metanav
Preferences
About Trac
Links
Slowchop Studios
Gerald Kaszuba
Advertisement
Show
Ignore:
Timestamp:
14/02/07 21:35:21 (2 years ago)
Author:
gak
Message:

Added script to build docs

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/filter.py

    r17 r20  
    1515    banana = Banana() 
    1616    banana.eat() 
    17     pycallgraph.make_graph('filter-exclude.png') 
     17    pycallgraph.make_dot_graph('filter-exclude.png') 
    1818 
    1919def filter_include(): 
     
    2323    banana = Banana() 
    2424    banana.eat() 
    25     pycallgraph.make_graph('filter-include.png') 
     25    pycallgraph.make_dot_graph('filter-include.png') 
    2626 
    2727def filter_max_depth(): 
     
    3030    banana = Banana() 
    3131    banana.eat() 
    32     pycallgraph.make_graph('filter-max-depth.png') 
     32    pycallgraph.make_dot_graph('filter-max-depth.png') 
    3333 
    3434filter_exclude()