Skip to content

Commit c420c99

Browse files
authored
Merge branch 'develop' into release-8.1.0
2 parents 2ca4d73 + 4046545 commit c420c99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/fill_gpi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def signature(func, name=None):
7777
# we get args=['a', 'b', 'c', 'd'] and defaults=['None', '4']
7878
# We must match them backwards from the end and pad the beginning with None
7979
# to get arg_pairs=[('a', None), ('b', None), ('c', 'None'), ('d', '4')]
80-
arg_pairs = reversed([(a, d) for a, d in izip_longest(reversed(args), reversed(defaults), fillvalue=None)])
80+
arg_pairs = reversed([(a, d) for a, d in zip_longest(reversed(args), reversed(defaults), fillvalue=None)])
8181
# Based on arg_pairs we convert it into
8282
# arg_strings=['a', 'b', 'a=None', 'd=4']
8383
arg_strings = []

0 commit comments

Comments
 (0)