1
0
forked from VimPlug/jedi

docstring parsing to infer argument types, fixes #40

This commit is contained in:
David Halter
2012-12-02 23:12:45 +01:00
parent c2f5a6a4b9
commit a79b3e2b87
3 changed files with 43 additions and 0 deletions

34
jedi/docstrings.py Normal file
View File

@@ -0,0 +1,34 @@
""" Processing of docstrings, which means parsing for types. """
import re
import evaluate
#@evaluate.memoize_default() # TODO add
def follow_param(param):
func = param.parent_function()
#print func, param, param.parent_function()
param_str = search_param_in_docstr(func.docstr, str(param.get_name()))
if param_str is not None:
scope = func.get_parent_until()
return evaluate.get_scopes_for_name(scope, param_str,
search_global=True)
return []
def search_param_in_docstr(docstr, param_str):
lines = docstr.split('\n')
# look at #40 to see definitions of those params
sphinx_comp = ':type %s:' % param_str
googley_comp = re.compile('\s*%s\s+\(([^()]+)\)' % re.escape(param_str))
for l in lines:
if l.startswith(sphinx_comp):
return l.replace(sphinx_comp, '', 1).strip()
r = re.match(googley_comp, l)
if r is not None:
return r.group(1)
return None