Searched refs:PyErr_NewException (Results 1 – 25 of 44) sorted by relevance
12
/third_party/python/Modules/ |
D | xxmodule.c | 366 ErrorObject = PyErr_NewException("xx.error", NULL, NULL); in xx_exec()
|
D | xxlimited_35.c | 257 ErrorObject = PyErr_NewException("xxlimited.error", NULL, NULL); in xx_modexec()
|
D | _xxsubinterpretersmodule.c | 298 ChannelError = PyErr_NewException("_xxsubinterpreters.ChannelError", in channel_exceptions_init() 308 ChannelNotFoundError = PyErr_NewException( in channel_exceptions_init() 318 ChannelClosedError = PyErr_NewException( in channel_exceptions_init() 328 ChannelEmptyError = PyErr_NewException( in channel_exceptions_init() 338 ChannelNotEmptyError = PyErr_NewException( in channel_exceptions_init() 1813 RunFailedError = PyErr_NewException("_xxsubinterpreters.RunFailedError", in interp_exceptions_init()
|
D | xxlimited.c | 310 state->Error_Type = PyErr_NewException("xxlimited.Error", NULL, NULL); in xx_modexec()
|
D | _curses_panel.c | 670 state->PyCursesError = PyErr_NewException( in _curses_panel_exec()
|
D | nismodule.c | 490 state->nis_error = PyErr_NewException("nis.error", NULL, NULL); in nis_exec()
|
D | binascii.c | 1616 state->Error = PyErr_NewException("binascii.Error", PyExc_ValueError, NULL); in binascii_exec() 1627 state->Incomplete = PyErr_NewException("binascii.Incomplete", NULL, NULL); in binascii_exec()
|
D | _dbmmodule.c | 512 state->dbm_error = PyErr_NewException("_dbm.error", PyExc_OSError, NULL); in _dbm_exec()
|
D | termios.c | 1012 state->TermiosError = PyErr_NewException("termios.error", NULL, NULL); in termios_exec()
|
D | _testmultiphase.c | 374 temp = PyErr_NewException("_testimportexec.error", NULL, NULL); in execfunc()
|
D | _gdbmmodule.c | 716 state->gdbm_error = PyErr_NewException("_gdbm.error", PyExc_OSError, NULL); in _gdbm_exec()
|
D | _localemodule.c | 845 state->Error = PyErr_NewException("locale.Error", NULL, NULL); in _locale_exec()
|
D | signalmodule.c | 1633 modstate->itimer_error = PyErr_NewException("signal.itimer_error",
|
D | ossaudiodev.c | 1123 OSSAudioError = PyErr_NewException("ossaudiodev.OSSAudioError", in PyInit_ossaudiodev()
|
D | zlibmodule.c | 1557 state->ZlibError = PyErr_NewException("zlib.error", NULL, NULL); in zlib_exec()
|
D | audioop.c | 1951 state->AudioopError = PyErr_NewException("audioop.error", NULL, NULL); in audioop_exec()
|
/third_party/python/Modules/_sqlite/ |
D | module.c | 351 exc = PyErr_NewException(MODULE_NAME "." name, base, NULL); \
|
/third_party/python/Include/ |
D | pyerrors.h | 218 PyAPI_FUNC(PyObject *) PyErr_NewException(
|
/third_party/skia/third_party/externals/brotli/python/ |
D | _brotli.cc | 725 BrotliError = PyErr_NewException((char*) "brotli.error", NULL, NULL); in INIT_BROTLI()
|
/third_party/boost/libs/python/src/object/ |
D | function.cpp | 295 PyErr_NewException(const_cast<char*>("Boost.Python.ArgumentError"), PyExc_TypeError, 0)); in argument_error()
|
/third_party/python/Python/ |
D | errors.c | 1108 PyErr_NewException(const char *name, PyObject *base, PyObject *dict) in PyErr_NewException() function 1190 ret = PyErr_NewException(name, base, dict); in PyErr_NewExceptionWithDoc()
|
/third_party/python/PC/ |
D | _msi.c | 1318 MSIError = PyErr_NewException ("_msi.MSIError", NULL, NULL); in PyInit__msi()
|
D | python3dll.c | 197 EXPORT_FUNC(PyErr_NewException)
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 613 PyErr_NewException:PyObject*::+1: 614 PyErr_NewException:const char*:name:: 615 PyErr_NewException:PyObject*:base:0: 616 PyErr_NewException:PyObject*:dict:0:
|
D | stable_abi.dat | 133 function,PyErr_NewException,3.2,
|
12