Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
4  
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
This runs quite happily for me in Python 2.7.1 – Hugh Bothwell Jan 5 '11 at 1:57
I fixed the error in the question. But the problem remains, I am running 2.6 and it crashes. – Julien Grenier Jan 5 '11 at 14:21
you're running 2.6.1 (revision 67515), issue 2646 was fixed in revision 68805. So, again: update your python 2.6 to the latest version (2.6.6 as of today). – SilentGhost Jan 5 '11 at 14:40

2 Answers

up vote 9 down vote accepted

Upgrade to Python 2.6.5 or later.

share|improve this answer
1  
The code above fails on Python 2.7. – mipadi Jan 4 '11 at 21:48
4  
Yes. This was fixed for 2.6. More info: bugs.python.org/issue2646 and bugs.python.org/issue4978. – Will McCutchen Jan 4 '11 at 21:49
1  
@mipadi It seems fairly safe to assume that the examples were supposed to be dicts instead of set literals, since the exception given only makes sense in that case. And the exception would only happen pre-2.6. – Will McCutchen Jan 4 '11 at 21:52
I am running 2.6 (Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49)) – Julien Grenier Jan 5 '11 at 14:19

Upgrading wasn't an option for me so I'm calling this on dicts as needed--

def flatten_unicode_keys(d):
    for k in d:
        if isinstance(k, unicode):
            v = d[k]
            del d[k]
            d[str(k)] = v
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.