Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
Dsymtablemodule.c.h30 if (!PyUnicode_FSDecoder(args[1], &filename)) { in _symtable_symtable()
/external/python/cpython3/Modules/_io/
Dwinconsoleio.c79 if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) { in _PyIO_get_console_type()
304 int d = PyUnicode_FSDecoder(nameobj, (void*)&decodedname); in _io__WindowsConsoleIO___init___impl()
Dfileio.c276 if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
/external/python/cpython3/Modules/
Dparsermodule.c461 PyUnicode_FSDecoder, &filename); in parser_compilest()
464 PyUnicode_FSDecoder, &filename); in parser_compilest()
Dposixmodule.c5440 if (!PyUnicode_FSDecoder(o, &ub)) in fsconvert_strdup()
5498 if (!PyUnicode_FSDecoder(key, &key2)) in parse_envlist()
5500 if (!PyUnicode_FSDecoder(val, &val2)) { in parse_envlist()
13233 if (!PyUnicode_FSDecoder(self->path, &ub)) in DirEntry_fetch_stat()
13455 if (!PyUnicode_FSDecoder(self->path, &unicode)) in os_DirEntry_inode_impl()
/external/python/cpython3/Include/
Dunicodeobject.h753 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/external/python/cpython3/Python/clinic/
Dbltinmodule.c.h199 if (!PyUnicode_FSDecoder(args[1], &filename)) { in builtin_compile()
/external/python/cpython3/PC/
Dpython3.def680 PyUnicode_FSDecoder=python39.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.rst1806 PyUnicode_FSDecoder() accepted a filename argument encoded as an iterable of
/external/python/cpython3/Doc/data/
Drefcounts.dat2858 PyUnicode_FSDecoder:int:::
2859 PyUnicode_FSDecoder:PyObject*:obj:0:
2860 PyUnicode_FSDecoder:void*:result::
/external/python/cpython3/Doc/c-api/
Dunicode.rst878 converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the
881 .. 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.c3971 PyUnicode_FSDecoder(PyObject* arg, void* addr) in PyUnicode_FSDecoder() function
/external/python/cpython3/Misc/
DHISTORY12315 - Issue #9542: Create PyUnicode_FSDecoder() function, a ParseTuple converter: