[issue1634774] locale 1251 does not convert to upper case properly

2013-10-13 Thread Georg Brandl
Georg Brandl added the comment: I agree that it's better not to touch this in 2.x. -- nosy: +georg.brandl status: pending -> closed ___ Python tracker ___ _

[issue1634774] locale 1251 does not convert to upper case properly

2013-04-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: With Python3 .upper() is locale-independent for unicode and bytes strings. For serious work with non-ascii text Python3 is strongly recommended anyway, so I suggest to close this issue. -- resolution: -> wont fix status: open -> pending

[issue1634774] locale 1251 does not convert to upper case properly

2013-04-03 Thread R. David Murray
R. David Murray added the comment: No, the issues with locale on Windows have to do with the locale names. Locale otherwise works fine on windows. -- nosy: +r.david.murray ___ Python tracker ___

[issue1634774] locale 1251 does not convert to upper case properly

2013-04-03 Thread Mark Lawrence
Mark Lawrence added the comment: Am I correct in saying that fixing this wouldn't help much as there are known issues with locales on Windows, e.g. #10466 ? -- ___ Python tracker

[issue1634774] locale 1251 does not convert to upper case properly

2012-10-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Interpreter Core -Library (Lib) versions: +Python 2.7 -Python 2.6, Python 3.0 ___ Python tracker ___ _

[issue1634774] locale 1251 does not convert to upper case properly

2012-10-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1634774] locale 1251 does not convert to upper case properly

2010-09-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc 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)

[issue1634774] locale 1251 does not convert to upper case properly

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I've tried to see if this is still an issue but frankly can't make head nor tail out of it :( Any locale gurus up for this? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue1634774] locale 1251 does not convert to upper case properly

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: May be related to issue 1633600. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 ___ Python tracker _