From 44efc6522a9c2a1ce7aed78860b325f6b8d541e5 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 14 Feb 2011 18:18:49 +0000 Subject: [PATCH] Fix accumulate() example. (Reported by David Murray.) --- Doc/whatsnew/3.2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 98d8599927..d6c9b3f5da 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -824,7 +824,7 @@ itertools modeled on APL's *scan* operator and Numpy's *accumulate* function: >>> from itertools import accumulate - >>> list(accumulate(8, 2, 50)) + >>> list(accumulate([8, 2, 50])) [8, 10, 60] >>> prob_dist = [0.1, 0.4, 0.2, 0.3] -- 2.40.0