Convert argument to snake_case (GH-16990)

This commit is contained in:
Борис Верховский 2019-11-02 15:09:14 -04:00 committed by Raymond Hettinger
parent d9d3993d1d
commit 99b7701978
1 changed files with 2 additions and 2 deletions

View File

@ -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.