[Python-Dev] Changes to gettext.py for Python 2.3 (original) (raw)

Barry Warsaw barry@python.org
11 Apr 2003 13:51:56 -0400


Hi I18n-ers,

I plan on checking in the following changes to the gettext.py module for Python 2.3, based on feedback from the Zope and Mailman i18n work. Here's a summary of the changes, hopefully there aren't too many controversies . I'll update the tests and the docs at the same time.

The plan then is that the charset parameter specifies the encoding for both the msgids and msgstrs, and both are decoded to Unicode when read. For example, we might encode po files with utf-8. I think the GNU gettext tools don't care.

Since this could potentially break code [*] that wants to use the encoded interface .gettext(), the constructor flag is added, defaulting to False. Most code I suspect will want to set this to True and use .ugettext().

-Barry

[*] I've come to the opinion that using anything other than Unicode msgids and msgstrs just won't work well for Python, and thus you really should be using the .ugettext() method everywhere. It's also insane to mix .gettext() and .ugettext(). In Zope, all human readable messages will be Unicode strings internally, so we definitely want Unicode msgids.