]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Code/Python/func_abc.py
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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()