This is why my brain cells rage:
def twofer(self, next, *a, **k):
def f():
self.g()
next(*a, **k)
return f
@mistersql They did it because of the 1 statement per lambda limit in python.
♡ 0 ↻ 0
March 27, 2015
This is why my brain cells rage:
def twofer(self, next, *a, **k):
def f():
self.g()
next(*a, **k)
return f
@mistersql They did it because of the 1 statement per lambda limit in python.