[issue2646] Python does not accept unicode keywords
John (J5) Palmieri <[EMAIL PROTECTED]> added the comment: Someone has convinced me that it is not worth bothering the dev team since they will have this fixed in P3k the right way. If it is easy then please fix this, otherwise feel free to close. __ T
[issue2646] Python does not accept unicode keywords
New submission from John (J5) Palmieri <[EMAIL PROTECTED]>: # given this function def a(**kwargs): pass # this works a(**{'b':'c'}) # this throws a format error a(**{u'b':'c'}) I am using a web framework (TurboGears w/ genshi templating) w