Home
last modified time | relevance | path

Searched refs:PyUnicode_EncodeCodePage (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Modules/
D_codecsmodule.c918 return codec_tuple(PyUnicode_EncodeCodePage(CP_ACP, str, errors), in _codecs_mbcs_encode_impl()
933 return codec_tuple(PyUnicode_EncodeCodePage(CP_OEMCP, str, errors), in _codecs_oem_encode_impl()
950 return codec_tuple(PyUnicode_EncodeCodePage(code_page, str, errors), in _codecs_code_page_encode_impl()
/third_party/python/Include/
Dunicodeobject.h720 PyAPI_FUNC(PyObject*) PyUnicode_EncodeCodePage(
/third_party/python/Doc/data/
Drefcounts.dat2642 PyUnicode_EncodeCodePage:PyObject*::+1:
2643 PyUnicode_EncodeCodePage:int:code_page::
2644 PyUnicode_EncodeCodePage:PyObject*:unicode:0:
2645 PyUnicode_EncodeCodePage:const char*:errors::
Dstable_abi.dat726 function,PyUnicode_EncodeCodePage,3.7,on Windows
/third_party/python/PC/
Dpython3dll.c651 EXPORT_FUNC(PyUnicode_EncodeCodePage)
/third_party/python/Misc/
Dstable_abi.txt1976 function PyUnicode_EncodeCodePage
/third_party/python/Doc/c-api/
Dunicode.rst1555 .. c:function:: PyObject* PyUnicode_EncodeCodePage(int code_page, PyObject *unicode, const char *er…
1572 :c:func:`PyUnicode_AsMBCSString`, :c:func:`PyUnicode_EncodeCodePage` or
/third_party/python/Objects/
Dunicodeobject.c3939 return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors); in PyUnicode_AsEncodedString()
8252 PyUnicode_EncodeCodePage(int code_page, in PyUnicode_EncodeCodePage() function
8262 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL); in PyUnicode_AsMBCSString()
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst57 PyUnicode_EncodeCodePage() now raise an exception if the object is not a
/third_party/python/Doc/whatsnew/
D3.3.rst2321 :c:func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)