Home
last modified time | relevance | path

Searched refs:pysqlite_Warning (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.h31 extern PyObject* pysqlite_Warning;
Dmodule.c38 PyObject* pysqlite_Error, *pysqlite_Warning, *pysqlite_InterfaceError, *pysqlite_DatabaseError, variable
346 … if (!(pysqlite_Warning = PyErr_NewException(MODULE_NAME ".Warning", PyExc_StandardError, NULL))) { in init_sqlite3()
349 PyDict_SetItemString(dict, "Warning", pysqlite_Warning); in init_sqlite3()
Dconnection.c200 self->Warning = pysqlite_Warning; in pysqlite_connection_init()
1207 PyErr_SetString(pysqlite_Warning, "You can only execute one statement at a time."); in pysqlite_connection_call()
1209 PyErr_SetString(pysqlite_Warning, "SQL is of wrong type. Must be string or unicode."); in pysqlite_connection_call()