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.h716 PyAPI_FUNC(PyObject*) PyUnicode_EncodeCodePage(
/third_party/python/Doc/data/
Drefcounts.dat2584 PyUnicode_EncodeCodePage:PyObject*::+1:
2585 PyUnicode_EncodeCodePage:int:code_page::
2586 PyUnicode_EncodeCodePage:PyObject*:unicode:0:
2587 PyUnicode_EncodeCodePage:const char*:errors::
Dstable_abi.dat746 function,PyUnicode_EncodeCodePage,3.7,on Windows,
/third_party/python/PC/
Dpython3dll.c664 EXPORT_FUNC(PyUnicode_EncodeCodePage)
/third_party/python/Misc/
Dstable_abi.toml2054 [function.PyUnicode_EncodeCodePage]
DNEWS35150 PyUnicode_EncodeCodePage() now raise an exception if the object is not a
/third_party/python/Objects/
Dunicodeobject.c3869 return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors); in PyUnicode_AsEncodedString()
8086 PyUnicode_EncodeCodePage(int code_page, in PyUnicode_EncodeCodePage() function
8096 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL); in PyUnicode_AsMBCSString()
/third_party/python/Doc/c-api/
Dunicode.rst1390 .. c:function:: PyObject* PyUnicode_EncodeCodePage(int code_page, PyObject *unicode, const char *er…
/third_party/python/Doc/whatsnew/
D3.3.rst2321 :c:func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)