Lines Matching refs:methodcaller
426 self.assertRaises(TypeError, operator.methodcaller)
427 self.assertRaises(TypeError, operator.methodcaller, 12)
436 f = operator.methodcaller('foo')
438 f = operator.methodcaller('foo', 1, 2)
443 f = operator.methodcaller('bar')
446 f = operator.methodcaller('bar', f=5)
448 f = operator.methodcaller('baz', name='spam', self='eggs')
578 methodcaller = self.module.methodcaller
589 f = methodcaller('bar')
594 f = methodcaller('foo', 1, 2)
599 f = methodcaller('bar', f=5)
603 f = methodcaller('baz', self='eggs', name='spam')