1
0
forked from VimPlug/jedi

Fix a caching issue

This commit is contained in:
Dave Halter
2019-08-01 02:10:46 +02:00
parent b5a62825ce
commit 8ab2a5320e

View File

@@ -12,6 +12,7 @@ The signature here for bar should be `bar(b, c)` instead of bar(*args).
"""
from jedi._compatibility import Parameter
from jedi.evaluate.utils import to_list
from jedi.evaluate.names import ParamNameWrapper
@@ -92,6 +93,7 @@ def _remove_given_params(arguments, param_names):
yield p
@to_list
def process_params(param_names, star_count=3): # default means both * and **
used_names = set()
arg_callables = []