Changeset 20 for trunk/examples/filter.py
- Timestamp:
- 14/02/07 21:35:21 (2 years ago)
- Files:
-
- 1 modified
-
trunk/examples/filter.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/filter.py
r17 r20 15 15 banana = Banana() 16 16 banana.eat() 17 pycallgraph.make_ graph('filter-exclude.png')17 pycallgraph.make_dot_graph('filter-exclude.png') 18 18 19 19 def filter_include(): … … 23 23 banana = Banana() 24 24 banana.eat() 25 pycallgraph.make_ graph('filter-include.png')25 pycallgraph.make_dot_graph('filter-include.png') 26 26 27 27 def filter_max_depth(): … … 30 30 banana = Banana() 31 31 banana.eat() 32 pycallgraph.make_ graph('filter-max-depth.png')32 pycallgraph.make_dot_graph('filter-max-depth.png') 33 33 34 34 filter_exclude()