Example #1
0
File: B.py Project: vishnur/ufora
def b_func(x):
    if x < 0:
        return x
    return A_alias.a_func(x - 1) + C.c_func(x - 2)
Example #2
0
def c_func(x):
    if x < 0:
        return x
    return A.a_func(x - 1) + d_renamed_func(x - 3) + x
Example #3
0
File: C.py Project: Sandy4321/ufora
def c_func(x):
    if x < 0:
        return x
    return A.a_func(x - 1) + d_renamed_func(x - 3) + x
Example #4
0
File: B.py Project: Sandy4321/ufora
def b_func(x):
    if x < 0:
        return x
    return A_alias.a_func(x - 1) + C.c_func(x - 2)