Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_sqlite/
Dcursor.c781 PyObject* script_obj; in pysqlite_cursor_executescript() local
788 if (!PyArg_ParseTuple(args, "O", &script_obj)) { in pysqlite_cursor_executescript()
798 if (PyString_Check(script_obj)) { in pysqlite_cursor_executescript()
799 script_cstr = PyString_AsString(script_obj); in pysqlite_cursor_executescript()
800 } else if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
801 script_str = PyUnicode_AsUTF8String(script_obj); in pysqlite_cursor_executescript()
/external/python/cpython3/Modules/_sqlite/
Dcursor.c692 pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *script_obj) in pysqlite_cursor_executescript() argument
707 if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
708 script_cstr = PyUnicode_AsUTF8(script_obj); in pysqlite_cursor_executescript()
Dconnection.c1493 PyObject *script_obj) in pysqlite_connection_executescript() argument
1506 script_obj, NULL); in pysqlite_connection_executescript()