From 0f665bf436fc21b1e820c734856f125b398e02cb Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 18 Jul 2014 16:52:25 +0200 Subject: [PATCH] test for #424, issues with form feeds --- test/test_parser/test_user_context.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/test_parser/test_user_context.py diff --git a/test/test_parser/test_user_context.py b/test/test_parser/test_user_context.py new file mode 100644 index 00000000..01aff796 --- /dev/null +++ b/test/test_parser/test_user_context.py @@ -0,0 +1,6 @@ +import jedi + + +def test_form_feed_characters(): + s = "\f\nclass Test(object):\n pass" + jedi.Script(s, line=2, column=18).call_signatures()