from timeit import Timer as T
def calc(n):
    return T("class Haha(object): pass").timeit(n)

for i in xrange(30):
    print calc(9000)
