Searched refs:PyCodec_Decode (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Doc/deprecations/ |
D | c-api-pending-removal-in-future.rst | 22 Use :c:func:`PyCodec_Decode` instead. 24 Use :c:func:`PyCodec_Decode` instead.
|
/external/python/cpython3/Include/ |
D | codecs.h | 75 PyAPI_FUNC(PyObject *) PyCodec_Decode(
|
/external/python/cpython3/Doc/c-api/ |
D | codec.rst | 35 .. c:function:: PyObject* PyCodec_Decode(PyObject *object, const char *encoding, const char *errors)
|
/external/python/cpython3/Modules/ |
D | _codecsmodule.c | 159 return PyCodec_Decode(obj, encoding, errors); in _codecs_decode_impl()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 288 PyCodec_Decode:PyObject*::+1: 289 PyCodec_Decode:PyObject*:object:0: 290 PyCodec_Decode:const char*:encoding:: 291 PyCodec_Decode:const char*:errors::
|
D | stable_abi.dat | 73 func,PyCodec_Decode,3.2,,
|
D | python3.13.abi | 79 …<elf-symbol name='PyCodec_Decode' type='func-type' binding='global-binding' visibility='default-vi… 10059 …PyCodec_Decode' mangled-name='PyCodec_Decode' filepath='./Include/codecs.h' line='75' column='1' v…
|
/external/python/cpython3/PC/ |
D | python3dll.c | 148 EXPORT_FUNC(PyCodec_Decode)
|
/external/python/cpython3/Python/ |
D | codecs.c | 496 PyObject *PyCodec_Decode(PyObject *object, in PyCodec_Decode() function
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 499 [function.PyCodec_Decode]
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 3563 return PyCodec_Decode(unicode, encoding, errors); in PyUnicode_AsDecodedObject() 3587 v = PyCodec_Decode(unicode, encoding, errors); in PyUnicode_AsDecodedUnicode()
|