Lines Matching refs:args
340 args = [-23, -2, 5, 107, 93568]
342 for a in args:
634 def do_test(self, args):
635 actual_msg = NumericTestCase._make_std_err_msg(*args)
636 expected = self.generate_substrings(*args)
646 args = (2.5, 4.0, 0.5, 0.25, None)
647 self.do_test(args)
651 args = (3.75, 8.25, 1.25, 0.5, 7)
652 self.do_test(args)
1037 errmsg = e.args[0]
1122 def check_for_type_error(self, *args):
1123 self.assertRaises(TypeError, self.func, *args)
1192 def simplified_sum(*args):
1193 T, value, n = statistics._sum(*args)