mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-11 00:01:54 +08:00
12 lines
120 B
Python
12 lines
120 B
Python
""" named params:
|
|
>>> def a(abc): pass
|
|
...
|
|
>>> a(abc=3) # <- this stuff
|
|
"""
|
|
|
|
def a(abc):
|
|
pass
|
|
|
|
#? 5 ['abc']
|
|
a(abc)
|