Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dfuture_builtins.c35 return PyNumber_ToBase(v, 16); in builtin_hex()
47 return PyNumber_ToBase(v, 8); in builtin_oct()
/external/python/cpython3/Include/
Dabstract.h611 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
/external/python/cpython2/Include/
Dabstract.h1034 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
/external/python/cpython3/Python/
Dbltinmodule.c454 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/
Dpython3.def417 PyNumber_ToBase=python39.PyNumber_ToBase
/external/python/cpython3/Doc/c-api/
Dnumber.rst260 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
/external/python/cpython2/Doc/c-api/
Dnumber.rst293 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
/external/python/cpython3/Doc/data/
Drefcounts.dat1542 PyNumber_ToBase:PyObject*::+1:
1543 PyNumber_ToBase:PyObject*:n:0:
1544 PyNumber_ToBase:int:base::
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst1258 :c:func:`PyNumber_ToBase` now raises a :exc:`SystemError` instead of
/external/python/cpython3/Objects/
Dabstract.c1569 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
Dunicodeobject.c14520 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/
Dbltinmodule.c220 return PyNumber_ToBase(v, 2); in builtin_bin()
/external/python/cpython2/Objects/
Dabstract.c1816 PyNumber_ToBase(PyObject *n, int base) function
/external/python/cpython3/Modules/
D_testcapimodule.c5293 return PyNumber_ToBase(obj, base); in pynumber_tobase()