1 2 3 4 5 6 7 8 9 10 11
from pkg.a import helper def absolute_caller(x): return helper(x) def lazy_caller(x): from pkg.a import helper return helper(x)