In [1]: l1 = lambda *args, **kw: args
In [2]: l1(**{'name':'hello'})
Out[2]: ()
In [3]: l1(**{u'name':'hello'})
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/home/sma/<ipython console> in <module>()
I've some problem with Python unable to pass/unpack the dictionary elements to the functions... might be my python is corrupted or system is broken don't know but this is strange
I'm using python 2.6.2 on Ubuntu 9.04 Jaunty Jacob