Lines Matching refs:list
941 for bad_type in (str, list, type(None), tuple, dict):
1021 new = list(statistics._fail_neg(values))
1059 data = list(range(10))
1089 class MyList(list):
1097 for kind in (list, tuple, iter, MyList, MyTuple, generator):
1104 expected = self.func(list(data))
1148 individual data points. E.g. the mean of a list of Fractions should itself
1633 data = list(range(15))
1838 data = list(range(10))
1853 data = list(range(10))
2008 # Test that iter data and list data give the same result.
2027 data = list(range(10000))
2377 self.assertEqual(result, list(map(datatype, expected)))
2396 exp = list(map(f, expected))
2432 self.assertEqual(result, list(map(datatype, expected)))
2436 exp = list(map(f, expected))
2480 list(range(group_size, total, group_size)))
2637 # list input
2844 xp = list(map(X.pdf, x_arr))
2845 yp = list(map(Y.pdf, x_arr))
2969 # as list, tuple, int, float, complex, str, dict, set, etc.