[issue5948] setlocale regression

2009-05-06 Thread Georg Brandl
Georg Brandl added the comment: Closing as "won't fix", then. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker ___ __

[issue5948] setlocale regression

2009-05-06 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- assignee: loewis -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5948] setlocale regression

2009-05-06 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: My tests were with official distributions. Yamamoto-san, thank you for your testing. I was thinking it might have been something to do with changed semantics, but I am happy you saved me the time from having to compile. Looking at the documentat

[issue5948] setlocale regression

2009-05-06 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- assignee: -> loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue5948] setlocale regression

2009-05-06 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Did you build python from source? Or did you download official binary distribution? If latter, Python2.5 was built with VC7, and Python2.6 is built with VC9. Probably difference of behavior comes from difference of version of msvcrt. I ran following codes fr

[issue5948] setlocale regression

2009-05-06 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> loewis nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5948] setlocale regression

2009-05-06 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: I can verify this on Vista. 2.5 gives: >>> from locale import setlocale, LC_ALL >>> setlocale(LC_ALL, "fr") 'French_France.1252' Whereas 2.6 fails. There is no difference between 2.5's and 2.6's PyLocale_setlocale() from what I can see in Modu

[issue5948] setlocale regression

2009-05-06 Thread Kerfred
New submission from Kerfred : There is a regression bug between Python 2.5 and Python 2.6. With Python 2.5, the following code works: import locale locale.setlocale(locale.LC_ALL, 'fr') Whereas with Python 2.6, I get this message: Traceback (most recent call last): File "", line 1, in File