mirror of
https://github.com/davidfraser/pyan.git
synced 2026-04-20 03:00:29 -04:00
12 lines
89 B
Python
12 lines
89 B
Python
import foo
|
|
|
|
def a():
|
|
return b()
|
|
|
|
def b():
|
|
return 3
|
|
|
|
def c():
|
|
return foo.f()
|
|
|