Searched defs:PyLong_FromString (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
H A Dlongobject.c1715 PyLong_FromString(char *str, char **pend, int base) function
2010 result = PyLong_FromString(buffer, NULL, base);
4031 /* Since PyLong_FromString doesn't have a length parameter,
4036 * just like PyLong_FromString does. */
4047 return PyLong_FromString(PyString_AS_STRING(x), NULL, base);
/external/python/cpython3/Objects/
H A Dlongobject.c2109 PyLong_FromString(const char *str, char **pend, int base) function
2457 /* Since PyLong_FromString doesn't have a length parameter,
2468 result = PyLong_FromString(s, &end, base);
2510 result = PyLong_FromString(buffer, &end, base);

Completed in 209 milliseconds