Parses a string as locale number according to the locale settings.
(string, grouping=False, monetary=False)
| 330 | return string |
| 331 | |
| 332 | def localize(string, grouping=False, monetary=False): |
| 333 | """Parses a string as locale number according to the locale settings.""" |
| 334 | return _localize(string, grouping, monetary) |
| 335 | |
| 336 | def atof(string, func=float): |
| 337 | "Parses a string as a float according to the locale settings." |
nothing calls this directly
no test coverage detected