Home
last modified time | relevance | path

Searched refs:PyNumber_ToBase (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/
Dabstract.h634 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
/third_party/python/Python/
Dbltinmodule.c446 return PyNumber_ToBase(number, 2); in builtin_bin()
1567 return PyNumber_ToBase(number, 16); in builtin_hex()
1863 return PyNumber_ToBase(number, 8); in builtin_oct()
/third_party/python/Doc/c-api/
Dnumber.rst264 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
/third_party/python/PC/
Dpython3dll.c417 EXPORT_FUNC(PyNumber_ToBase)
/third_party/python/Doc/data/
Dstable_abi.dat441 function,PyNumber_ToBase,3.2,
Drefcounts.dat1545 PyNumber_ToBase:PyObject*::+1:
1546 PyNumber_ToBase:PyObject*:n:0:
1547 PyNumber_ToBase:int:base::
/third_party/python/Misc/
Dstable_abi.txt998 function PyNumber_ToBase
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst1258 :c:func:`PyNumber_ToBase` now raises a :exc:`SystemError` instead of
/third_party/python/Objects/
Dabstract.c1702 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
Dunicodeobject.c14780 result = PyNumber_ToBase(val, 10); in _PyUnicode_FormatLong()
14784 result = PyNumber_ToBase(val, 8); in _PyUnicode_FormatLong()
14789 result = PyNumber_ToBase(val, 16); in _PyUnicode_FormatLong()
/third_party/python/Modules/
D_testcapimodule.c5478 return PyNumber_ToBase(obj, base); in pynumber_tobase()