Searched refs:PyNumber_ToBase (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Include/ |
H A D | abstract.h | 634 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/third_party/python/Python/ |
H A D | bltinmodule.c | 434 return PyNumber_ToBase(number, 2); in builtin_bin() 1591 return PyNumber_ToBase(number, 16); in builtin_hex() 1890 return PyNumber_ToBase(number, 8); in builtin_oct()
|
/third_party/python/PC/ |
H A D | python3dll.c | 424 EXPORT_FUNC(PyNumber_ToBase)
|
/third_party/python/Objects/ |
H A D | abstract.c | 1695 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function 1699 "PyNumber_ToBase: base must be 2, 8, 10 or 16"); in PyNumber_ToBase()
|
H A D | unicodeobject.c | 14451 result = PyNumber_ToBase(val, 10); in _PyUnicode_FormatLong() 14455 result = PyNumber_ToBase(val, 8); in _PyUnicode_FormatLong() 14460 result = PyNumber_ToBase(val, 16); in _PyUnicode_FormatLong()
|
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 5701 return PyNumber_ToBase(obj, base); in pynumber_tobase()
|
Completed in 45 milliseconds