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?
foo() argument after ** must be a mapping, not set. I think you meant'a':'b'. What's your platform? python-2.7-8.fc14.1.x86_64 works fine with that fix. – Cristian Ciupitu Jan 4 '11 at 21:31