#!/usr/local/bin/python2 import time class C(object): def __init__(self): print time.time.now() c = lambda: C() c() c()