Home
last modified time | relevance | path

Searched refs:PyUnicode_FSDecoder (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Modules/clinic/
Dsymtablemodule.c.h27 &str, PyUnicode_FSDecoder, &filename, &startstr)) { in _symtable_symtable()
Dzipimport.c.h40 PyUnicode_FSDecoder, &path)) { in zipimport_zipimporter___init__()
/external/python/cpython3/Modules/_io/
Dwinconsoleio.c78 if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) { in _PyIO_get_console_type()
303 int d = PyUnicode_FSDecoder(nameobj, (void*)&decodedname); in _io__WindowsConsoleIO___init___impl()
Dfileio.c274 if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
/external/python/cpython3/Modules/
Dparsermodule.c465 PyUnicode_FSDecoder, &filename); in parser_compilest()
468 PyUnicode_FSDecoder, &filename); in parser_compilest()
Dposixmodule.c4838 if (!PyUnicode_FSDecoder(o, &ub)) in fsconvert_strdup()
4896 if (!PyUnicode_FSDecoder(key, &key2)) in parse_envlist()
4898 if (!PyUnicode_FSDecoder(val, &val2)) { in parse_envlist()
11646 if (!PyUnicode_FSDecoder(self->path, &ub)) in DirEntry_fetch_stat()
11847 if (!PyUnicode_FSDecoder(self->path, &unicode)) in os_DirEntry_inode_impl()
/external/python/cpython3/Python/clinic/
Dbltinmodule.c.h174 &source, PyUnicode_FSDecoder, &filename, &mode, &flags, &dont_inherit, &optimize)) { in builtin_compile()
/external/python/cpython3/PC/
Dpython3.def680 PyUnicode_FSDecoder=python37.PyUnicode_FSDecoder
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a3.rst427 PyUnicode_FSDecoder() accepted a filename argument encoded as an iterable of
D3.6.0b1.rst1343 PyUnicode_FSDecoder().
D3.5.3rc1.rst1807 PyUnicode_FSDecoder() accepted a filename argument encoded as an iterable of
/external/python/cpython3/Include/
Dunicodeobject.h1825 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/external/python/cpython3/Doc/data/
Drefcounts.dat2817 PyUnicode_FSDecoder:int:::
2818 PyUnicode_FSDecoder:PyObject*:obj:0:
2819 PyUnicode_FSDecoder:void*:result::
/external/python/cpython3/Doc/c-api/
Dunicode.rst850 converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the
853 .. c:function:: int PyUnicode_FSDecoder(PyObject* obj, void* result)
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1905 * The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
/external/python/cpython3/Objects/
Dunicodeobject.c3739 PyUnicode_FSDecoder(PyObject* arg, void* addr) in PyUnicode_FSDecoder() function
/external/python/cpython3/Misc/
DHISTORY12315 - Issue #9542: Create PyUnicode_FSDecoder() function, a ParseTuple converter: