[issue41032] locale.setlocale example incorrect

2020-08-17 Thread MarcoBakera
MarcoBakera added the comment: I have only reported the bug and do not know exactly how to proceed. I don't think there's anything wrong with taking over the bug. -- ___ Python tracker _

[issue41032] locale.setlocale example incorrect

2020-08-16 Thread Barathwaja
Barathwaja added the comment: Hi Marco, Can I work on this? -- nosy: +Barathwaja ___ Python tracker ___ ___ Python-bugs-list maili

[issue41032] locale.setlocale example incorrect

2020-06-19 Thread MarcoBakera
New submission from MarcoBakera : The example given results in an error. https://docs.python.org/3.8/library/locale.html?highlight=locale >>> locale.setlocale(locale.LC_ALL, 'de_DE') I could be improved with one of the following versions: >>> locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8') >>