1
0
forked from VimPlug/jedi

Add Signature.to_string() with proper tests, fixes #779, fixes #780

This commit is contained in:
Dave Halter
2019-08-02 11:13:01 +02:00
parent ca6a7215e2
commit d58bbce24f
2 changed files with 7 additions and 4 deletions

View File

@@ -625,6 +625,9 @@ class Signature(Definition):
return [ParamDefinition(self._evaluator, n)
for n in self._signature.get_param_names(resolve_stars=True)]
def to_string(self):
return self._signature.to_string()
class CallSignature(Signature):
"""