aboutsummaryrefslogtreecommitdiffstats
path: root/test/foo/test_ns.py
blob: 282447a624db3ad67814892ef2b0f773880b8238 (plain)
1
2
3
4
5
6
7
8
9
10
def foo1(context):
    context.write("this is foo1.")
    return ''

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


foo3 = "I'm not a callable"