From: Guido van Rossum Date: Tue, 7 Jul 1998 22:32:19 +0000 (+0000) Subject: Two error messages still used the old name of the functio mkvalue() -- X-Git-Tag: v1.5.2a1~333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=233f4b54d3f5b25249caa7c19e87dcb74cabf1e6;p=python Two error messages still used the old name of the functio mkvalue() -- which is now Py_BuildValue(). --- diff --git a/Python/modsupport.c b/Python/modsupport.c index 0ddc300ae0..76fc2d963c 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -351,7 +351,7 @@ do_mkvalue(p_format, p_va) * clear that the caller knew * what she was doing. */ PyErr_SetString(PyExc_SystemError, - "NULL object passed to mkvalue"); + "NULL object passed to Py_BuildValue"); return v; } @@ -363,7 +363,7 @@ do_mkvalue(p_format, p_va) default: PyErr_SetString(PyExc_SystemError, - "bad format char passed to mkvalue"); + "bad format char passed to Py_BuildValue"); return NULL; }