[issue8409] gettext should honor $LOCPATH environment variable

2011-09-01 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8409] gettext should honor $LOCPATH environment variable

2011-09-01 Thread Danilo Segan
Danilo Segan added the comment: I believe it's invalid. GNU gettext itself doesn't honor the LOCPATH variable, LOCPATH is basically used by GNU libc for pointing to locale data. Even though this also includes LC_MESSAGES, gettext has never used it afaik. If it's not invalid (iow, gettext shou

[issue8409] gettext should honor $LOCPATH environment variable

2010-11-05 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm not an expert on this, but I think it's still valid. Maybe Martin has an opinion on it? -- ___ Python tracker ___ ___

[issue8409] gettext should honor $LOCPATH environment variable

2010-11-05 Thread Éric Araujo
Éric Araujo added the comment: Should this be closed as invalid? -- nosy: +eric.araujo, lemburg, loewis ___ Python tracker ___ ___ Pyt

[issue8409] gettext should honor $LOCPATH environment variable

2010-10-25 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: barry -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue8409] gettext should honor $LOCPATH environment variable

2010-04-15 Thread Roumen Petrov
Roumen Petrov added the comment: LOCPATH is not used by GNU gettext. /usr/share/locale/XX/... - message translation files (GNU gettext) /usr/lib/locale/xx_XX*/ - locale (GNU libc) -- nosy: +rpetrov ___ Python tracker

[issue8409] gettext should honor $LOCPATH environment variable

2010-04-15 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8409] gettext should honor $LOCPATH environment variable

2010-04-15 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue8409] gettext should honor $LOCPATH environment variable

2010-04-15 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : LOCPATH is an environment variable recognized by locale(1) http://man.he.net/?topic=locale§ion=all gettext.find() should probably consult $LOCPATH and use that for localedir if the argument is not given. -- assignee: barry components: Library (Lib