Parses a string as locale number according to the locale settings.
(string, grouping=False, monetary=False)
| 320 | return string |
| 321 | |
| 322 | def localize(string, grouping=False, monetary=False): |
| 323 | """Parses a string as locale number according to the locale settings.""" |
| 324 | return _localize(string, grouping, monetary) |
| 325 | |
| 326 | def atof(string, func=float): |
| 327 | "Parses a string as a float according to the locale settings." |
nothing calls this directly
no test coverage detected
searching dependent graphs…