Searched refs:PyExc_UnicodeEncodeError (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Python/ |
D | codecs.c | 663 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_IgnoreErrors() 687 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_ReplaceErrors() 738 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_XMLCharRefReplaceErrors() 872 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_BackslashReplaceErrors() 943 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_NameReplaceErrors() 1113 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogatePassErrors() 1273 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogateEscapeErrors()
|
D | importdl.c | 77 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in get_encoded_name()
|
D | sysmodule.c | 757 if (_PyErr_ExceptionMatches(tstate, PyExc_UnicodeEncodeError)) { in sys_displayhook()
|
/external/python/cpython3/Modules/cjkcodecs/ |
D | multibytecodec.c | 308 buf->excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in multibytecodec_encerror() 828 PyObject *excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in encoder_encode_stateful() 835 PyErr_SetObject(PyExc_UnicodeEncodeError, excobj); in encoder_encode_stateful() 957 PyObject *excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in _multibytecodec_MultibyteIncrementalEncoder_getstate_impl() 966 PyErr_SetObject(PyExc_UnicodeEncodeError, excobj); in _multibytecodec_MultibyteIncrementalEncoder_getstate_impl()
|
/external/python/cpython3/Include/ |
D | pyerrors.h | 117 PyAPI_DATA(PyObject *) PyExc_UnicodeEncodeError;
|
/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | globals-to-fix.tsv | 275 Objects/exceptions.c - PyExc_UnicodeEncodeError -
|
/external/python/cpython3/PC/ |
D | python3dll.c | 876 EXPORT_DATA(PyExc_UnicodeEncodeError)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 262 data,PyExc_UnicodeEncodeError,3.2,,
|
D | python3.13.abi | 1567 …<elf-symbol name='PyExc_UnicodeEncodeError' size='8' type='object-type' binding='global-binding' v… 6628 …PyExc_UnicodeEncodeError' type-id='type-id-4' mangled-name='PyExc_UnicodeEncodeError' visibility='…
|
/external/python/cpython3/Modules/ |
D | _datetimemodule.c | 3136 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in date_new() 4519 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in time_new() 5185 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_new() 5707 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_fromisoformat()
|
D | _pickle.c | 3789 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global() 3808 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global()
|
D | _ssl.c | 4272 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in _ssl__SSLContext_load_verify_locations_impl()
|
/external/python/cpython3/Doc/c-api/ |
D | exceptions.rst | 1021 single: PyExc_UnicodeEncodeError (C var) 1128 | :c:data:`PyExc_UnicodeEncodeError` | :exc:`UnicodeEncodeError` | |
|
/external/python/cpython3/Tools/c-analyzer/ |
D | TODO | 714 Objects/exceptions.c:PyExc_UnicodeEncodeError static PyTypeObject PyExc_UnicodeE…
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 797 [data.PyExc_UnicodeEncodeError]
|
/external/python/cpython3/Objects/ |
D | exceptions.c | 3031 PyObject *PyExc_UnicodeEncodeError = (PyObject *)&_PyExc_UnicodeEncodeError; variable
|
D | unicodeobject.c | 3663 exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnns", in unicode_encode_locale() 6773 PyExc_UnicodeEncodeError, "sOnns", in make_encode_exception()
|
D | typeobject.c | 10881 && typeobj != PyExc_UnicodeEncodeError in expect_manually_inherited()
|