Searched refs:dotted_path (Results 1 – 1 of 1) sorted by relevance
1653 PyObject *dotted_path; in get_dotted_path() local1656 dotted_path = PyUnicode_Split(name, _PyUnicode_FromId(&PyId_dot), -1); in get_dotted_path()1657 if (dotted_path == NULL) in get_dotted_path()1659 n = PyList_GET_SIZE(dotted_path); in get_dotted_path()1662 PyObject *subpath = PyList_GET_ITEM(dotted_path, i); in get_dotted_path()1670 Py_DECREF(dotted_path); in get_dotted_path()1674 return dotted_path; in get_dotted_path()1707 PyObject *dotted_path, *attr; in getattribute() local1710 dotted_path = get_dotted_path(obj, name); in getattribute()1711 if (dotted_path == NULL) in getattribute()[all …]