Home | History | Annotate | Download | only in test

Lines Matching defs:errfunc

20 def errfunc(*args):
730 self.assertRaises(ValueError, imap(errfunc, [4], [5]).next)
744 self.assertRaises(ValueError, starmap(errfunc, [(4,5)]).next)
804 self.assertRaises(ValueError, takewhile(errfunc, [(4,5)]).next)
818 self.assertRaises(ValueError, dropwhile(errfunc, [(4,5)]).next)