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