Searched refs:PyNumber_ToBase (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Modules/ |
D | future_builtins.c | 35 return PyNumber_ToBase(v, 16); in builtin_hex() 47 return PyNumber_ToBase(v, 8); in builtin_oct()
|
/external/python/cpython3/Include/ |
D | abstract.h | 611 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/external/python/cpython2/Include/ |
D | abstract.h | 1034 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 454 return PyNumber_ToBase(number, 2); in builtin_bin() 1505 return PyNumber_ToBase(number, 16); in builtin_hex() 1745 return PyNumber_ToBase(number, 8); in builtin_oct()
|
/external/python/cpython3/PC/ |
D | python3.def | 417 PyNumber_ToBase=python39.PyNumber_ToBase
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 260 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
|
/external/python/cpython2/Doc/c-api/ |
D | number.rst | 293 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1542 PyNumber_ToBase:PyObject*::+1: 1543 PyNumber_ToBase:PyObject*:n:0: 1544 PyNumber_ToBase:int:base::
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 1258 :c:func:`PyNumber_ToBase` now raises a :exc:`SystemError` instead of
|
/external/python/cpython3/Objects/ |
D | abstract.c | 1569 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
|
D | unicodeobject.c | 14520 result = PyNumber_ToBase(val, 10); in _PyUnicode_FormatLong() 14524 result = PyNumber_ToBase(val, 8); in _PyUnicode_FormatLong() 14529 result = PyNumber_ToBase(val, 16); in _PyUnicode_FormatLong()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 220 return PyNumber_ToBase(v, 2); in builtin_bin()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1816 PyNumber_ToBase(PyObject *n, int base) function
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 5293 return PyNumber_ToBase(obj, base); in pynumber_tobase()
|