Searched refs:PyNumber_ToBase (Results 1 – 12 of 12) 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/cpython2/Include/ |
D | abstract.h | 1034 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/external/python/cpython3/Include/ |
D | abstract.h | 829 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 486 return PyNumber_ToBase(number, 2); in builtin_bin() 1539 return PyNumber_ToBase(number, 16); in builtin_hex() 1768 return PyNumber_ToBase(number, 8); in builtin_oct()
|
/external/python/cpython3/PC/ |
D | python3.def | 415 PyNumber_ToBase=python37.PyNumber_ToBase
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 257 .. 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 | 1514 PyNumber_ToBase:PyObject*::+1: 1515 PyNumber_ToBase:PyObject*:n:0: 1516 PyNumber_ToBase:int:base::
|
/external/python/cpython3/Objects/ |
D | abstract.c | 1481 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
|
D | unicodeobject.c | 14174 result = PyNumber_ToBase(val, 10); in _PyUnicode_FormatLong() 14178 result = PyNumber_ToBase(val, 8); in _PyUnicode_FormatLong() 14183 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
|