From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 5 Nov 2019 07:07:24 +0000 (-0800) Subject: Convert argument to snake_case (GH-16990) (GH-17033) X-Git-Tag: v3.8.1rc1~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0eb6fefad7c753a186cf51f0dc52416a1a8d6d51;p=thirdparty%2FPython%2Fcpython.git Convert argument to snake_case (GH-16990) (GH-17033) (cherry picked from commit 99b7701978d1fdc81e10c31d1ad8cce2c0c2d848) Co-authored-by: Борис Верховский --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 8d134d438065..3e5a67389810 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.