1
0
forked from VimPlug/jedi

test for parser issues with parentheses indentation, see davidhalter/jedi-vim#288

This commit is contained in:
Dave Halter
2014-07-15 17:05:16 +02:00
parent 22e5574a91
commit 53a32d8304

14
test/completion/parser.py Normal file
View File

@@ -0,0 +1,14 @@
"""
Issues with the parser not the completion engine should be here.
"""
class C():
""" issue jedi-vim#288 """
def indent_issues(
self,
):
return 1
#? int()
C().indent_issues()