1
""" pkg2.a defines overridden and a_func """
2
3
def a_func():
4
return "a_func from pkg2.a"
5
print "pkg2.a imported"
6