from traced_module import bar k = 0 def joe(n): global k k += bar(n) def foo(): for i in range(20): joe(i) foo() print("K is %s" % k)