Lines Matching refs:lambda
709 f.sort(lambda x,y: cmp(func_code(x[1]).co_firstlineno,func_code(y[1]).co_firstlineno))712 f.sort(key=lambda x: func_code(x[1]).co_firstlineno)717 s.sort(lambda x,y: (len(x[1]) < len(y[1])) - (len(x[1]) > len(y[1])))720 s.sort(key=lambda x: len(x[1]),reverse=True)