Searched refs:scriptobj (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
H A Dsyslogmodule.c72 PyObject *scriptobj; local
89 scriptobj = PyList_GetItem(argv, 0);
90 if (!PyUnicode_Check(scriptobj)) {
93 scriptlen = PyUnicode_GET_LENGTH(scriptobj);
98 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1);
102 return PyUnicode_Substring(scriptobj, slash, scriptlen);
104 Py_INCREF(scriptobj);
105 return(scriptobj);
/external/python/cpython2/Modules/
H A Dsyslogmodule.c72 PyObject *scriptobj; local
89 scriptobj = PyList_GetItem(argv, 0);
90 if (!PyString_Check(scriptobj)) {
93 if (PyString_GET_SIZE(scriptobj) == 0) {
97 atslash = strrchr(PyString_AsString(scriptobj), SEP);
101 Py_INCREF(scriptobj);
102 return(scriptobj);

Completed in 72 milliseconds