From 53a32d830456cc52a1f659d4abfabb2b7f5ae1c2 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 15 Jul 2014 17:05:16 +0200 Subject: [PATCH] test for parser issues with parentheses indentation, see davidhalter/jedi-vim#288 --- test/completion/parser.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/completion/parser.py diff --git a/test/completion/parser.py b/test/completion/parser.py new file mode 100644 index 00000000..60c84787 --- /dev/null +++ b/test/completion/parser.py @@ -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()