Home
last modified time | relevance | path

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

/third_party/python/Modules/clinic/
Dsymtablemodule.c.h30 if (!PyUnicode_FSDecoder(args[1], &filename)) { in _symtable_symtable()
/third_party/python/Modules/_io/
Dwinconsoleio.c76 if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) { in _PyIO_get_console_type()
290 int d = PyUnicode_FSDecoder(nameobj, (void*)&decodedname); in _io__WindowsConsoleIO___init___impl()
Dfileio.c270 if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
/third_party/python/Include/
Dunicodeobject.h773 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/third_party/python/Python/clinic/
Dbltinmodule.c.h194 if (!PyUnicode_FSDecoder(args[1], &filename)) { in builtin_compile()
/third_party/python/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
/third_party/python/PC/
Dpython3dll.c666 EXPORT_FUNC(PyUnicode_FSDecoder)
/third_party/python/Doc/data/
Dstable_abi.dat730 function,PyUnicode_FSDecoder,3.2,
Drefcounts.dat2835 PyUnicode_FSDecoder:int:::
2836 PyUnicode_FSDecoder:PyObject*:obj:0:
2837 PyUnicode_FSDecoder:void*:result::
/third_party/python/Modules/
Dposixmodule.c5567 if (!PyUnicode_FSDecoder(o, &ub)) in fsconvert_strdup()
5625 if (!PyUnicode_FSDecoder(key, &key2)) in parse_envlist()
5627 if (!PyUnicode_FSDecoder(val, &val2)) { in parse_envlist()
13480 if (!PyUnicode_FSDecoder(self->path, &ub)) in DirEntry_fetch_stat()
13713 if (!PyUnicode_FSDecoder(self->path, &unicode)) in os_DirEntry_inode_impl()
/third_party/python/Misc/
Dstable_abi.txt1416 function PyUnicode_FSDecoder
DHISTORY12315 - Issue #9542: Create PyUnicode_FSDecoder() function, a ParseTuple converter:
/third_party/python/Doc/c-api/
Dunicode.rst865 converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the
868 .. c:function:: int PyUnicode_FSDecoder(PyObject* obj, void* result)
/third_party/python/Doc/whatsnew/
D3.6.rst1905 * The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
/third_party/python/Objects/
Dunicodeobject.c4169 PyUnicode_FSDecoder(PyObject* arg, void* addr) in PyUnicode_FSDecoder() function