mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
named param tests for *args/**kwargs
This commit is contained in:
@@ -9,3 +9,13 @@ def a(abc):
|
||||
|
||||
#? 5 ['abc']
|
||||
a(abc)
|
||||
|
||||
|
||||
def a(*some_args, **some_kwargs):
|
||||
pass
|
||||
|
||||
#? 11 []
|
||||
a(some_args)
|
||||
|
||||
#? 13 []
|
||||
a(some_kwargs
|
||||
|
||||
Reference in New Issue
Block a user