1
0
forked from VimPlug/jedi

Remove use_exact_op_types because the default changed.

This commit is contained in:
Dave Halter
2017-05-26 11:35:47 -04:00
parent 24cd603fcf
commit 3015e7e60f

View File

@@ -119,7 +119,7 @@ def get_stack_at_position(grammar, code_lines, module_node, pos):
pass
def tokenize_without_endmarker(code):
tokens = tokenize.source_tokens(code, use_exact_op_types=True)
tokens = tokenize.source_tokens(code)
for token_ in tokens:
if token_.string == safeword:
raise EndMarkerReached()