()
| 342 | return int(delocalize(string)) |
| 343 | |
| 344 | def _test(): |
| 345 | setlocale(LC_ALL, "") |
| 346 | #do grouping |
| 347 | s1 = format_string("%d", 123456789,1) |
| 348 | print(s1, "is", atoi(s1)) |
| 349 | #standard formatting |
| 350 | s1 = str(3.14) |
| 351 | print(s1, "is", atof(s1)) |
| 352 | |
| 353 | ### Locale name aliasing engine |
| 354 |