Managed to get dict inputs working into kwargs. This was wrong in the old version of the parser.

This commit is contained in:
Dave Halter
2014-10-27 01:07:15 +01:00
parent 8df8749f22
commit c0768924f6
3 changed files with 20 additions and 18 deletions

View File

@@ -289,10 +289,15 @@ exe['b']
#? int() float()
exe['c']
a = 'a'
exe2 = kwargs_func(**{a:3,
b:4.0})
'b':4.0})
#? int()
exe2['a']
#? float()
exe2['b']
#? int() float()
exe2['c']
# -----------------
# *args / ** kwargs