mirror of
https://github.com/davidfraser/pyan.git
synced 2026-01-14 00:37:56 -05:00
12 lines
96 B
Python
12 lines
96 B
Python
from . import bar
|
|
|
|
def f():
|
|
return g()
|
|
|
|
def g():
|
|
return 3
|
|
|
|
def h():
|
|
return bar.v()
|
|
|