Searched refs:PyNumber_ToBase (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Include/ |
D | abstract.h | 634 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/third_party/python/Python/ |
D | bltinmodule.c | 446 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/ |
D | number.rst | 264 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
|
/third_party/python/PC/ |
D | python3dll.c | 417 EXPORT_FUNC(PyNumber_ToBase)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 441 function,PyNumber_ToBase,3.2,
|
D | refcounts.dat | 1545 PyNumber_ToBase:PyObject*::+1: 1546 PyNumber_ToBase:PyObject*:n:0: 1547 PyNumber_ToBase:int:base::
|
/third_party/python/Misc/ |
D | stable_abi.txt | 998 function PyNumber_ToBase
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 1258 :c:func:`PyNumber_ToBase` now raises a :exc:`SystemError` instead of
|
/third_party/python/Objects/ |
D | abstract.c | 1702 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
|
D | unicodeobject.c | 14780 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.c | 5478 return PyNumber_ToBase(obj, base); in pynumber_tobase()
|