Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dabstract.c766 PyObject *format_method = NULL; local
808 format_method = PyObject_GetAttrString(self_as_str, "__format__");
809 if (format_method == NULL) {
812 result = PyObject_CallFunctionObjArgs(format_method,
817 Py_XDECREF(format_method);