Converts a string to an integer according to the locale settings.
(string)
| 328 | return func(delocalize(string)) |
| 329 | |
| 330 | def atoi(string): |
| 331 | "Converts a string to an integer according to the locale settings." |
| 332 | return int(delocalize(string)) |
| 333 | |
| 334 | def _test(): |
| 335 | setlocale(LC_ALL, "") |
no test coverage detected
searching dependent graphs…