mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
22 lines
212 B
Python
22 lines
212 B
Python
""" named params:
|
|
>>> def a(abc): pass
|
|
...
|
|
>>> a(abc=3) # <- this stuff
|
|
"""
|
|
|
|
def a(abc):
|
|
pass
|
|
|
|
#? 5 ['abc']
|
|
a(abc)
|
|
|
|
|
|
def a(*some_args, **some_kwargs):
|
|
pass
|
|
|
|
#? 11 []
|
|
a(some_args)
|
|
|
|
#? 13 []
|
|
a(some_kwargs
|