cute use of lambda

Simon Forman sajmikins at gmail.com
Thu Sep 27 22:18:21 EDT 2007


class FakeQueue(list):
    put = list.append
    get = lambda self: self.pop(0)


;]




More information about the Python-list mailing list