Converts a string to an integer according to the locale settings.
(string)
| 338 | return func(delocalize(string)) |
| 339 | |
| 340 | def atoi(string): |
| 341 | "Converts a string to an integer according to the locale settings." |
| 342 | return int(delocalize(string)) |
| 343 | |
| 344 | def _test(): |
| 345 | setlocale(LC_ALL, "") |