Fix some small issues with resulting types

This commit is contained in:
Dave Halter
2018-09-28 18:22:57 +02:00
parent fbd72179a1
commit f35c233289

View File

@@ -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)()
# -----------------