diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-28 01:52:10 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-28 01:52:10 (GMT) |
commit | 5d44613e3bfd3b5e657b8dea808ef958543be7e0 (patch) | |
tree | 45feb9409f64893ad357722ee36f27480a7d9652 /Lib/test/test_itertools.py | |
parent | af88d866994a20d13b75ecad6ab5144ef5bcc9fc (diff) | |
download | cpython-5d44613e3bfd3b5e657b8dea808ef958543be7e0.zip cpython-5d44613e3bfd3b5e657b8dea808ef958543be7e0.tar.gz cpython-5d44613e3bfd3b5e657b8dea808ef958543be7e0.tar.bz2 |
Add optional *func* argument to itertools.accumulate().
Diffstat (limited to 'Lib/test/test_itertools.py')
-rw-r--r-- | Lib/test/test_itertools.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 5e4bf1b..acbb00a 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -69,11 +69,21 @@ class TestBasicOps(unittest.TestCase): self.assertEqual(list(accumulate('abc')), ['a', 'ab', 'abc']) # works with non-numeric self.assertEqual(list(accumulate([])), []) # empty iterable self.assertEqual(list(accumulate([7])), [7]) # iterable of length one - self.assertRaises(TypeError, accumulate, range(10), 5) # too many args + self.assertRaises(TypeError, accumulate, range(10), 5, 6) # too many args self.assertRaises(TypeError, accumulate) # too few args self.assertRaises(TypeError, accumulate, x=range(10)) # unexpected kwd arg self.assertRaises(TypeError, list, accumulate([1, []])) # args that don't add + s = [2, 8, 9, 5, 7, 0, 3, 4, 1, 6] + self.assertEqual(list(accumulate(s, min)), + [2, 2, 2, 2, 2, 0, 0, 0, 0, 0]) + self.assertEqual(list(accumulate(s, max)), + [2, 8, 9, 9, 9, 9, 9, 9, 9, 9]) + self.assertEqual(list(accumulate(s, operator.mul)), + [2, 16, 144, 720, 5040, 0, 0, 0, 0, 0]) + with self.assertRaises(TypeError): + list(accumulate(s, chr)) # unary-operation + def test_chain(self): def chain2(*iterables): |