I t seems language / locale is mixed up here. Apparently, 'us' is not a language.
Though language, region (and script) are loosely coupled, they are independent. Encoding is a different concept. The problems of locale are: 1. It is a combined specification of lang/region/encoding. 2. Not portable among platforms. 3. Python locale library is incosistent (at least in non Roman language like 'ja', 'ru'). For currency formatting, it is ideal to let user specify locale properties ( ex. 'thousands_sep', 'int_frac_digits' ) directly or use universal formatter, and not use python locale at all. For the time being, is is possible not to call locale if user specifies the value returned by locale.localeconv() using a global variable ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en -~----------~----~----~----~------~----~------~--~---
