[issue20079] Add support for glibc supported locales

2014-10-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue20079] Add support for glibc supported locales

2014-10-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think there is nothing more to do here and the issue can be closed. -- ___ Python tracker ___ __

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 02.10.2014 11:13, Serhiy Storchaka wrote: > > Serhiy Storchaka added the comment: > >> Test failed due to mismatch between glibc and X11 locale.alias (issue20087). >> In X11 locale.alias ca_ES is mapped to ca_ES.ISO8859-1, and in glibc 2.19 >> it is mapp

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Test failed due to mismatch between glibc and X11 locale.alias (issue20087). > In X11 locale.alias ca_ES is mapped to ca_ES.ISO8859-1, and in glibc 2.19 > it is mapped to ca_ES.ISO8859-15. ca_ES@valencia exists only in glibc > SUPPORTED file and was added in

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Reviewing that, I think this change need to be documented > (in the comment above the table) and also researched a bit: The 'kk_kz' was added just, in the first commit of this issue (which was based on glibc 2.18 data). No changes to previous Python version

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, sorry. I should be more careful. Test failed due to mismatch between glibc and X11 locale.alias (issue20087). In X11 locale.alias ca_ES is mapped to ca_ES.ISO8859-1, and in glibc 2.19 it is mapped to ca_ES.ISO8859-15. ca_ES@valencia exists only in glibc

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 02.10.2014 10:38, Marc-Andre Lemburg wrote: > > What I don't understand is why the above case failed. That mapping > wasn't changed by the patch, AFAICT. Ah, the change is in the second patch round you applied, which is not on the ticket as separate patc

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ce459fc57b9 by Serhiy Storchaka in branch '2.7': Issue #20079: Fixed tests. https://hg.python.org/cpython/rev/7ce459fc57b9 New changeset 8cdea138 by Serhiy Storchaka in branch '3.4': Issue #20079: Fixed tests. https://hg.python.org/cpython/rev/

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 02.10.2014 10:24, STINNER Victor wrote: > > STINNER Victor added the comment: > > A lot of buildbot failed. Example: > > http://buildbot.python.org/all/builders/AMD64%20FreeBSD%2010.0%203.x/builds/2692/steps/test/logs/stdio > >

[issue20079] Add support for glibc supported locales

2014-10-02 Thread STINNER Victor
STINNER Victor added the comment: A lot of buildbot failed. Example: http://buildbot.python.org/all/builders/AMD64%20FreeBSD%2010.0%203.x/builds/2692/steps/test/logs/stdio == FAIL: test_valencia_modifier (test.test_locale.Norma

[issue20079] Add support for glibc supported locales

2014-10-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5502a82fb103 by Serhiy Storchaka in branch 'default': Issue #20079: makelocalealias.py now supports installed SUPPORTED file, https://hg.python.org/cpython/rev/5502a82fb103 New changeset 4a19ce6c6e0c by Serhiy Storchaka in branch '2.7': Issue #20079

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Marc-Andre. See also related issue20087. -- ___ Python tracker ___ ___

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 810542d07b4e by Serhiy Storchaka in branch 'default': Issue #20079: Added locales supported in glibc 2.18 to locale alias table. https://hg.python.org/cpython/rev/810542d07b4e New changeset 00e4190b308f by Serhiy Storchaka in branch '3.4': Issue #20

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, sorry, issue20076 doesn't eliminate additions in this issue, but vice verse this issue eliminates some additions of issue20076. So this patch should be applied first. -- assignee: -> serhiy.storchaka ___ Pyth

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 01.10.2014 09:52, Serhiy Storchaka wrote: > > The makelocalealias.py generates only a list of removes and updates, not > additions. Ah, ok. > I recommend first apply issue20076, it will eliminate most additions. Agreed. Please apply both patches. Tha

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The makelocalealias.py generates only a list of removes and updates, not additions. I recommend first apply issue20076, it will eliminate most additions. -- ___ Python tracker

[issue20079] Add support for glibc supported locales

2014-10-01 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Thanks, Serhiy. The patch looks good, except for one nit: the makelocalealias.py normaly also generates a list of changes and these are put at the top of the locale_alias dictionary. Could you add that as well ? -- __

[issue20079] Add support for glibc supported locales

2014-09-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue20079] Add support for glibc supported locales

2013-12-29 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20079] Add support for glibc supported locales

2013-12-28 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20079] Add support for glibc supported locales

2013-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Totally added 100 new mappings. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue20079] Add support for glibc supported locales

2013-12-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch adds to locale alias table the mappings for locales supported in recent glibc (v 2.18). It also modifies the makelocalealias.py script so that it parses the SUPPORTED file from glibc sources and supports command line options for source paths