#
#   Test __iscofunction__ attribute of function object
#

def f():
	pass

codef g():
	pass

print("f:", f.__iscofunction__)
print("g:", g.__iscofunction__)
f.__iscofunction__ = True
