Commit 332503db authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.2

parents 199808b7 a12d5c62
...@@ -496,7 +496,7 @@ builtin_format(PyObject *self, PyObject *args) ...@@ -496,7 +496,7 @@ builtin_format(PyObject *self, PyObject *args)
PyObject *format_spec = NULL; PyObject *format_spec = NULL;
if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec)) if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec))
return NULL; return NULL;
return PyObject_Format(value, format_spec); return PyObject_Format(value, format_spec);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment