Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dfileutils.c425 Py_EncodeLocale(const wchar_t *text, size_t *error_pos) in Py_EncodeLocale() function
1029 cpath = Py_EncodeLocale(path, NULL); in _Py_wfopen()
1349 cpath = Py_EncodeLocale(path, NULL); in _Py_wreadlink()
1394 cpath = Py_EncodeLocale(path, NULL); in _Py_wrealpath()
/external/python/cpython3/Include/
Dfileutils.h13 PyAPI_FUNC(char*) Py_EncodeLocale(
/external/python/cpython3/Doc/c-api/
Dsys.rst80 Use the :c:func:`Py_EncodeLocale` function to encode the character string
91 .. c:function:: char* Py_EncodeLocale(const wchar_t *text, size_t *error_pos)
Dunicode.rst799 The :c:func:`Py_EncodeLocale` function.
896 The :c:func:`Py_EncodeLocale` function.
/external/python/cpython3/Modules/
Dmain.c773 cfilename_buffer = Py_EncodeLocale(filename, NULL); in Py_Main()
Dgetpath.c124 fname = Py_EncodeLocale(path, NULL); in _Py_wstat()
/external/python/cpython3/PC/
Dpython3.def718 Py_EncodeLocale=python36.Py_EncodeLocale
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2186 * :c:func:`Py_EncodeLocale` (replaced ``_Py_wchar2char()``).
/external/python/cpython3/Objects/
Dunicodeobject.c3440 str = Py_EncodeLocale(wstr, &error_pos); in PyUnicode_EncodeLocale()
/external/python/cpython3/Misc/
DNEWS8296 rename ``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document