From 9c53de5034d1f7184eba5f1d5414884386901cd9 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 23 Jul 2013 15:30:37 +0200 Subject: [PATCH] add empty return type test --- test/completion/docstring.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/completion/docstring.py b/test/completion/docstring.py index 0b555881..bde2e7e8 100644 --- a/test/completion/docstring.py +++ b/test/completion/docstring.py @@ -33,12 +33,16 @@ def f(a, b): :type a: :param b: Just something :type b: `` + :rtype: """ #? a #? b +#? +f() + # ----------------- # epydoc style # -----------------