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

Changeset 66

Show
Ignore:
Timestamp:
06/07/08 08:57:34 (8 weeks ago)
Author:
gak
Message:

Example tweaks

Location:
trunk/examples
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/examples/all.py

    r65 r66  
    77for example in examples: 
    88    pycallgraph.reset_settings() 
     9    print(example) 
    910    execfile(example) 
    1011 
  • trunk/examples/recursive.py

    r52 r66  
    3838    pycallgraph.start_trace() 
    3939    for a in xrange(1, 10): 
    40         print factorial(a) 
     40        factorial(a) 
    4141 
    4242    pycallgraph.make_dot_graph('recursive.png')