1
0
forked from VimPlug/jedi

Merge pull request #141 from tkf/attribute-docstring

Attribute docstring support
This commit is contained in:
David Halter
2013-03-10 13:23:47 -07:00
4 changed files with 55 additions and 1 deletions

View File

@@ -259,6 +259,9 @@ def find_name(scope, name_str, position=None, search_global=False,
# so just ignore it.
continue
if r.docstr:
res_new.append(r)
scopes = follow_statement(r, seek_name=name_str)
add += remove_statements(scopes)