Fix dynamic param tests.

This commit is contained in:
Dave Halter
2016-11-24 00:11:26 +01:00
parent 06efc8fb8c
commit 7ed1c95737
10 changed files with 149 additions and 88 deletions

View File

@@ -56,11 +56,11 @@ def func(c):
return c
#? str()
func("str")
func("something")
@def_func
def func(c=1):
#? int() float()
#? float()
return c
func(1.0)