I was exception the following to work.
def foo(**kwargs):
print kwargs
foo(**{'a':'b'})
foo(**{u'a':'b'})
Traceback (most recent call last):
File “”, line 1, in
TypeError: m() keywords must be strings
Am I doing something wrong or I should I fix it?
Upgrade to Python 2.6.5 or later.