Home
last modified time | relevance | path

Searched refs:pysqlite_InternalError (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dmodule.c39 *pysqlite_InternalError, *pysqlite_OperationalError, *pysqlite_ProgrammingError, variable
365 …if (!(pysqlite_InternalError = PyErr_NewException(MODULE_NAME ".InternalError", pysqlite_DatabaseE… in init_sqlite3()
368 PyDict_SetItemString(dict, "InternalError", pysqlite_InternalError); in init_sqlite3()
Dmodule.h34 extern PyObject* pysqlite_InternalError;
Dutil.c66 PyErr_SetString(pysqlite_InternalError, sqlite3_errmsg(db)); in _pysqlite_seterror()
Dconnection.c210 self->InternalError = pysqlite_InternalError; in pysqlite_connection_init()
/external/python/cpython3/Modules/_sqlite/
Dmodule.c42 PyObject *pysqlite_InternalError = NULL; variable
408 …if (!(pysqlite_InternalError = PyErr_NewException(MODULE_NAME ".InternalError", pysqlite_DatabaseE… in PyInit__sqlite3()
411 PyDict_SetItemString(dict, "InternalError", pysqlite_InternalError); in PyInit__sqlite3()
Dmodule.h34 extern PyObject* pysqlite_InternalError;
Dutil.c59 PyErr_SetString(pysqlite_InternalError, sqlite3_errmsg(db)); in _pysqlite_seterror()
Dconnection.c206 self->InternalError = pysqlite_InternalError; in pysqlite_connection_init()