1
0
forked from VimPlug/jedi

get the 'not' priorities right for precedences

This commit is contained in:
Dave Halter
2014-03-08 03:14:05 +01:00
parent 3559dba7ea
commit 11346d0901
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -86,7 +86,8 @@ def _get_number(iterator, priority=PythonGrammar.LOWEST_PRIORITY):
if isinstance(el, pr.Operator):
if el in PythonGrammar.FACTOR:
right = _get_number(iterator, PythonGrammar.FACTOR_PRIORITY)
elif el in PythonGrammar.NOT_TEST and priority <= PythonGrammar.FACTOR_PRIORITY:
elif el in PythonGrammar.NOT_TEST \
and priority >= PythonGrammar.NOT_TEST_PRIORITY:
right = _get_number(iterator, PythonGrammar.NOT_TEST_PRIORITY)
else:
_syntax_error(el)