[issue23091] unpacked keyword arguments are not unicode normalized

R. David Murray report at bugs.python.org
Sat Dec 20 04:27:57 CET 2014


R. David Murray added the comment:

I suspect that the normalization is happening in the parsing phase.  That is, the keyword argument gets normalized when the python source is compiled, but the dictionary key is, of course, *not* normalized, since it is a literal string.  If I'm right, I think is not a bug.

----------
nosy: +r.david.murray

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23091>
_______________________________________


More information about the Python-bugs-list mailing list