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

/external/python/cpython2/Objects/
H A Dstringobject.c2208 PyObject *tableobj, *delobj = NULL; local
2211 &tableobj, &delobj))
2214 if (PyString_Check(tableobj)) {
2215 table = PyString_AS_STRING(tableobj);
2216 tablen = PyString_GET_SIZE(tableobj);
2218 else if (tableobj == Py_None) {
2223 else if (PyUnicode_Check(tableobj)) {
2232 return PyUnicode_Translate((PyObject *)self, tableobj, NULL);
2235 else if (PyObject_AsCharBuffer(tableobj, &table, &tablen))

Completed in 227 milliseconds