Convert argument to snake_case (GH-16990) (GH-17033)
(cherry picked from commit 99b7701978d1fdc81e10c31d1ad8cce2c0c2d848)
Co-authored-by: Борис Верховский <boris.verk@gmail.com>
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 @@
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.