Travis build: 187

This commit is contained in:
30secondsofcode
2019-10-31 07:35:32 +00:00
parent 8fc995989d
commit 81ba93e596
3 changed files with 4 additions and 4 deletions

View File

@ -1176,7 +1176,7 @@ Loop for `max_length` times grouping elements.
If lengths of `lists` vary, use `fill_value` (defaults to `None`).
```py
def zip(*args, fillvalue=None):
def zip(*args, fill_value=None):
max_length = max([len(lst) for lst in args])
result = []
for i in range(max_length):