mirror of
https://github.com/davidfraser/pyan.git
synced 2026-01-09 15:37:57 -05:00
10 lines
142 B
Python
10 lines
142 B
Python
import test_code.submodule1 as b
|
|
|
|
from . import submodule1
|
|
|
|
A = 32
|
|
|
|
|
|
def test_2(a):
|
|
return submodule1.test_func2(a) + A + b.test_func1(a)
|