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