Fix some *args issues

This commit is contained in:
Dave Halter
2019-07-08 17:03:45 -07:00
parent 97bf83aa03
commit a0b4e76c1a
2 changed files with 9 additions and 9 deletions

View File

@@ -451,8 +451,8 @@ code4 = 'def i(u, /, v, *args, x=1, y, **kwargs): pass'
(code3, 'h(a,b,args=', None),
(code3, 'h(u,v=', 1),
(code3, 'h(u=', None),
#(code3, 'h(u,*xxx', 1),
#(code3, 'h(u,*[]', 1),
(code3, 'h(u,*xxx', 1),
(code3, 'h(u,*[]', 1),
# *args, **kwargs
(code4, 'i(a,b,c,d', 2),