From a7f7d8ff9f8279ec2c1f3981b1507001f1f94394 Mon Sep 17 00:00:00 2001 From: Yakov Borevich Date: Thu, 27 Dec 2012 14:41:29 +0400 Subject: [PATCH] Add tests for epydoc formated dosctring --- test/completion/docstring.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/completion/docstring.py b/test/completion/docstring.py index 8362630b..29bc4c7d 100644 --- a/test/completion/docstring.py +++ b/test/completion/docstring.py @@ -19,3 +19,13 @@ def g(a, b): a #? b + +def e(a, b): + """ asdfasdf + @type a: str + @param a: blablabla + """ + #? str() + a + #? + b