Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment: the OP is right: str.upper is supposed to be locale-dependent http://docs.python.org/library/stdtypes.html#str.upper
But the implementation uses _toupper() which is a macro with Visual Studio, and obviously not locale-dependent: #define _toupper(_Char) ( (_Char)-'a'+'A' ) ---------- nosy: +amaury.forgeotdarc stage: unit test needed -> needs patch _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue1634774> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com