Home
last modified time | relevance | path

Searched refs:PyOS_strtol (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Python/
Dmystrtoul.c263 PyOS_strtol(const char *str, char **ptr, int base) in PyOS_strtol() function
/third_party/python/Include/
Dlongobject.h205 PyAPI_FUNC(long) PyOS_strtol(const char *, char **, int);
/third_party/python/Doc/data/
Dstable_abi.dat460 function,PyOS_strtol,3.2,
/third_party/python/PC/
Dpython3dll.c487 EXPORT_FUNC(PyOS_strtol)
/third_party/python/Misc/
Dstable_abi.txt1025 function PyOS_strtol
DHISTORY17585 - Bug #1521947: When checking for overflow, ``PyOS_strtol()`` used some
/third_party/python/Parser/
Dpegen.c1044 x = PyOS_strtol(s, (char **)&end, 0); in parsenumber_raw()