From 53ca7c19cde2a722a3deba9bdf1c9d835d53f1fe Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 9 Aug 2018 23:32:04 +0200 Subject: [PATCH] Some changes in the PEP 0484 understanding (more future compatible) --- test/completion/pep0484_basic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/completion/pep0484_basic.py b/test/completion/pep0484_basic.py index 6c88804d..64b69dc1 100644 --- a/test/completion/pep0484_basic.py +++ b/test/completion/pep0484_basic.py @@ -68,7 +68,7 @@ def return_annotation_and_docstring() -> str: """ pass -#? str() int() +#? str() return_annotation_and_docstring() @@ -138,7 +138,7 @@ function_with_non_pep_0484_annotation(1, 2, 3, "force string") def function_forward_reference_dynamic( x: return_str_type(), y: "return_str_type()") -> None: - #? + #? str() x #? str() y