Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Number formatting according to locale
This proposal implements the formatting numbers with the proper thousand separator and decimal sign according to the locale for the `.read_formatted()` function. To use this feature, a module should at first ` import locale locale.setlocale(locale.LC_ALL, '') ` and then call `.read_formatted()` with the named parameter `use_locale` set to `True`, for example: `read_formatted(register, use_locale=True)`.
- Loading branch information