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