1
2@profile
3def test_1(i):
4    # .. will be called twice ..
5    c = {}
6    for i in range(i):
7        c[i] = 2
8
9if __name__ == '__main__':
10    test_1(10)
11    test_1(10000)
12