Home | History | Annotate | Download | only in Objects

Lines Matching defs:format_spec

1262     PyObject *format_spec;

1264 if (!PyArg_ParseTuple(args, "O:__format__", &format_spec))
1266 if (PyBytes_Check(format_spec))
1268 PyBytes_AS_STRING(format_spec),
1269 PyBytes_GET_SIZE(format_spec));
1270 if (PyUnicode_Check(format_spec)) {
1271 /* Convert format_spec to a str */
1273 PyObject *str_spec = PyObject_Str(format_spec);