From cba100a80125fe84252acafadfd6b7c593c4aa23 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 4 Aug 2014 16:08:47 +0200 Subject: [PATCH] test for #414 which doesn't seem to be failing anymore. --- test/completion/docstring.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/completion/docstring.py b/test/completion/docstring.py index ca105302..89ecbe0a 100644 --- a/test/completion/docstring.py +++ b/test/completion/docstring.py @@ -83,6 +83,14 @@ def list_with_non_imports(lst): lst[1][10] +def two_dots(a): + """ + :type a: json.decoder.JSONDecoder + """ + #? ['raw_decode'] + a.raw_decode + + # sphinx returns def return_module_object(): """ @@ -92,6 +100,7 @@ def return_module_object(): #? ['join'] return_module_object().join + # ----------------- # epydoc style # -----------------