1
0
forked from VimPlug/jedi

parsing.PyFuzzyParser -> Parser

This commit is contained in:
David Halter
2013-02-04 16:18:24 +01:00
parent e1ab3855fa
commit 95c5b9a5e3
6 changed files with 10 additions and 11 deletions

View File

@@ -188,7 +188,7 @@ class Script(object):
return scopes
def _get_under_cursor_stmt(self, cursor_txt):
r = parsing.PyFuzzyParser(cursor_txt, no_docstr=True)
r = parsing.Parser(cursor_txt, no_docstr=True)
try:
stmt = r.module.statements[0]
except IndexError: