From f35c233289d990c837156bca90d27f9da63925ff Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 28 Sep 2018 18:22:57 +0200 Subject: [PATCH] Fix some small issues with resulting types --- test/completion/stdlib.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/completion/stdlib.py b/test/completion/stdlib.py index 69b17ee2..04587110 100644 --- a/test/completion/stdlib.py +++ b/test/completion/stdlib.py @@ -103,6 +103,8 @@ for a in re.finditer('a', 'a'): #? str() bytes() re.sub('a', 'a') +#? str() bytes() +re.sub('a', 'a', 'f') # ----------------- # ref @@ -114,7 +116,7 @@ weakref.proxy(1) #? weakref.ref() weakref.ref(1) -#? int() +#? int() None weakref.ref(1)() # -----------------