This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: gettext's default localedir does not match documentation
Type: behavior Stage: resolved
Components: Documentation, Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, gvanrossum, moht
Priority: normal Keywords:

Created on 2020-01-30 12:48 by moht, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg361054 - (view) Author: Thomas Perret (moht) Date: 2020-01-30 12:48
gettext's documentation (Doc/library/gettext.rst:724) states that default locale directory is: "sys.prefix/share/locale" but the code in gettext module (Lib/gettext.py:63) uses "sys.base_prefix/share/locale"
msg361725 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-02-10 21:37
Fixed by Carl-y in PR 18435, PR 18440, PR 18439. (Sorry, those commits were attributed to issue3950 by mistake.)
History
Date User Action Args
2022-04-11 14:59:26adminsetgithub: 83682
2020-02-10 21:37:16gvanrossumsetstatus: open -> closed

nosy: + gvanrossum
messages: + msg361725

resolution: fixed
stage: resolved
2020-01-30 12:48:53mohtcreate