Kaydet (Commit) 6f889ad3 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 81712 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81712 | benjamin.peterson | 2010-06-04 21:07:01 -0500 (Fri, 04 Jun 2010) | 1 line

  _PyObject_LookupSpecial returns a new reference
........
üst c03d7571
......@@ -716,6 +716,7 @@ PyObject_Format(PyObject *obj, PyObject *format_spec)
/* And call it. */
result = PyObject_CallFunctionObjArgs(meth, format_spec, NULL);
Py_DECREF(meth);
if (result && !PyUnicode_Check(result)) {
PyErr_SetString(PyExc_TypeError,
......
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