Home
last modified time | relevance | path

Searched refs:PyUnicode_EncodeDecimal (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h180 # define PyUnicode_EncodeDecimal PyUnicodeUCS2_EncodeDecimal macro
267 # define PyUnicode_EncodeDecimal PyUnicodeUCS4_EncodeDecimal macro
1130 PyAPI_FUNC(int) PyUnicode_EncodeDecimal(
/external/python/cpython3/Doc/c-api/
Dlong.rst102 string is first encoded to a byte string using :c:func:`PyUnicode_EncodeDecimal`
114 :c:func:`PyUnicode_EncodeDecimal` and then converted using
/external/python/cpython3/Include/
Dunicodeobject.h1751 PyAPI_FUNC(int) PyUnicode_EncodeDecimal(
/external/python/cpython2/Objects/
Dcomplexobject.c994 if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v), in complex_subtype_from_string()
Dintobject.c412 if (PyUnicode_EncodeDecimal(s, length, buffer, NULL)) { in PyInt_FromUnicode()
Dfloatobject.c196 if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v), in PyFloat_FromString()
Dlongobject.c2006 if (PyUnicode_EncodeDecimal(u, length, buffer, NULL)) { in PyLong_FromUnicode()
Dunicodeobject.c5219 int PyUnicode_EncodeDecimal(Py_UNICODE *s, in PyUnicode_EncodeDecimal() function
/external/python/cpython2/Modules/
D_testcapimodule.c1755 res = PyUnicode_EncodeDecimal(unicode, length, in unicode_encodedecimal()
/external/python/cpython3/Modules/
D_testcapimodule.c1963 res = PyUnicode_EncodeDecimal(unicode, length, in unicode_encodedecimal()
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2322 * :c:func:`PyUnicode_EncodeDecimal`,
/external/python/cpython3/Objects/
Dunicodeobject.c9166 PyUnicode_EncodeDecimal(Py_UNICODE *s, in PyUnicode_EncodeDecimal() function
/external/python/cpython3/Misc/
DHISTORY10522 - Issue #13452: PyUnicode_EncodeDecimal() doesn't support error handlers