aboutsummaryrefslogtreecommitdiffstats
path: root/test/sample_module_namespace.py
blob: 886e8dd059856838baacb031571ce56fe78b302d (plain)
1
2
3
4
5
6
7
8
def foo1(context):
    context.write("this is foo1.")
    return ""


def foo2(context, x):
    context.write("this is foo2, x is " + x)
    return ""