Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.c792 PyObject* script_obj; in pysqlite_cursor_executescript() local
799 if (!PyArg_ParseTuple(args, "O", &script_obj)) { in pysqlite_cursor_executescript()
809 if (PyString_Check(script_obj)) { in pysqlite_cursor_executescript()
810 script_cstr = PyString_AsString(script_obj); in pysqlite_cursor_executescript()
811 } else if (PyUnicode_Check(script_obj)) { in pysqlite_cursor_executescript()
812 script_str = PyUnicode_AsUTF8String(script_obj); in pysqlite_cursor_executescript()