Humberto Diogenes wrote:

>    * _ = gettext.gettext; print _("my string") isn't very nice

If you don't like _, you're free to use something
else, e.g.

   from gettext import gettext as i

   i("This is a an i18m string")

which is not very far from an i prefix.

--
Greg
_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to