Home
last modified time | relevance | path

Searched refs:script_obj (Results 1 – 2 of 2) 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.c628 PyObject* script_obj; in pysqlite_cursor_executescript() local
634 if (!PyArg_ParseTuple(args, "O", &script_obj)) { in pysqlite_cursor_executescript()
644 if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
645 script_cstr = PyUnicode_AsUTF8(script_obj); in pysqlite_cursor_executescript()