MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / atoi

Function atoi

tools/python-3.11.9-amd64/Lib/locale.py:340–342  ·  view source on GitHub ↗

Converts a string to an integer according to the locale settings.

(string)

Source from the content-addressed store, hash-verified

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

Callers 1

_testFunction · 0.85

Calls 1

delocalizeFunction · 0.85

Tested by

no test coverage detected