Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_pickle.c1809 PyObject *dotted_path; in get_dotted_path() local
1812 dotted_path = PyUnicode_Split(name, _PyUnicode_FromId(&PyId_dot), -1); in get_dotted_path()
1813 if (dotted_path == NULL) in get_dotted_path()
1815 n = PyList_GET_SIZE(dotted_path); in get_dotted_path()
1818 PyObject *subpath = PyList_GET_ITEM(dotted_path, i); in get_dotted_path()
1826 Py_DECREF(dotted_path); in get_dotted_path()
1830 return dotted_path; in get_dotted_path()
1863 PyObject *dotted_path, *attr; in getattribute() local
1866 dotted_path = get_dotted_path(obj, name); in getattribute()
1867 if (dotted_path == NULL) in getattribute()
[all …]