Sections
Timeline
View Tickets
New Ticket
Sub-Sections
Download
Unified Diff
Zip Archive
Metanav
Preferences
About Trac
Links
Slowchop Studios
Gerald Kaszuba
Advertisement

Changeset 20

Show
Ignore:
Timestamp:
14/02/07 21:35:21 (2 years ago)
Author:
gak
Message:

Added script to build docs

Location:
trunk
Files:
2 added
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/basic.py

    r12 r20  
    1212banana.eat() 
    1313 
    14 pycallgraph.make_graph('basic.png') 
     14pycallgraph.make_dot_graph('basic.png') 
    1515 
    1616# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: 
  • 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() 
  • trunk/examples/import.py

    r14 r20  
    88    pycallgraph.start_trace() 
    99    __import__(imp) 
    10     pycallgraph.make_graph('import-%s.png' % imp) 
     10    pycallgraph.make_dot_graph('import-%s.png' % imp) 
    1111 
    1212# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: 
  • trunk/examples/recursive.py

    r12 r20  
    1111    print factorial(a) 
    1212 
    13 pycallgraph.make_graph('recursive.png') 
     13pycallgraph.make_dot_graph('recursive.png') 
    1414 
    1515# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: 
  • trunk/examples/regexp.py

    r13 r20  
    66re.search('(hel[j-s]o).*(th[^e]*ere)', 'hello there') 
    77 
    8 pycallgraph.make_graph('regexp.png') 
     8pycallgraph.make_dot_graph('regexp.png') 
    99 
    1010# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: 
  • trunk/pycallgraph.py

    r19 r20  
    246246    print 'Generating graph' 
    247247    stop_trace() 
    248     make_graph(f) 
     248    make_dot_graph(f) 
    249249    print '%s should be in this directiory. Hit enter to quit.' % f 
    250250    raw_input()