]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/contrib/dtracetoolkit/Code/Python/func_abc.py
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / cddl / contrib / dtracetoolkit / Code / Python / func_abc.py
1 #!/usr/bin/python
2
3 import time
4
5 def func_c():
6         print "Function C"      
7         time.sleep(1)
8
9 def func_b():
10         print "Function B"
11         time.sleep(1)
12         func_c()
13
14 def func_a():
15         print "Function A"
16         time.sleep(1)
17         func_b()
18
19 func_a()