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