mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 14:34:31 +08:00
added param names to completion items (see also #7)
This commit is contained in:
10
test/completion/named_param.py
Normal file
10
test/completion/named_param.py
Normal file
@@ -0,0 +1,10 @@
|
||||
""" named params:
|
||||
>>> def a(abc): pass
|
||||
>>> a(abc=3) # <- this stuff
|
||||
"""
|
||||
|
||||
def a(abc):
|
||||
pass
|
||||
|
||||
#? 5 ['abc']
|
||||
a(abc)
|
||||
Reference in New Issue
Block a user