1
0
forked from VimPlug/jedi

Add a few docstrings to make some things clearer

This commit is contained in:
Dave Halter
2019-08-02 13:16:18 +02:00
parent 876a6a5c22
commit a22c6da89f
2 changed files with 10 additions and 1 deletions

View File

@@ -315,7 +315,8 @@ def test_signature_is_definition(Script):
# Now compare all the attributes that a CallSignature must also have.
for attr_name in dir(definition):
dont_scan = ['defined_names', 'parent', 'goto_assignments', 'infer', 'params']
dont_scan = ['defined_names', 'parent', 'goto_assignments', 'infer',
'params', 'get_signatures']
if attr_name.startswith('_') or attr_name in dont_scan:
continue