From 0eb6fefad7c753a186cf51f0dc52416a1a8d6d51 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 4 Nov 2019 23:07:24 -0800 Subject: Convert argument to snake_case (GH-16990) (GH-17033) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 99b7701978d1fdc81e10c31d1ad8cce2c0c2d848) Co-authored-by: Борис Верховский --- Doc/library/itertools.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 8d134d4..3e5a673 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -766,9 +766,9 @@ which incur interpreter overhead. def dotproduct(vec1, vec2): return sum(map(operator.mul, vec1, vec2)) - def flatten(listOfLists): + def flatten(list_of_lists): "Flatten one level of nesting" - return chain.from_iterable(listOfLists) + return chain.from_iterable(list_of_lists) def repeatfunc(func, times=None, *args): """Repeat calls to func with specified arguments. -- cgit v0.12