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