Commit 233f4b54 authored by Guido van Rossum's avatar Guido van Rossum

Two error messages still used the old name of the functio mkvalue() --

which is now Py_BuildValue().
parent c821d1ec
...@@ -351,7 +351,7 @@ do_mkvalue(p_format, p_va) ...@@ -351,7 +351,7 @@ do_mkvalue(p_format, p_va)
* clear that the caller knew * clear that the caller knew
* what she was doing. */ * what she was doing. */
PyErr_SetString(PyExc_SystemError, PyErr_SetString(PyExc_SystemError,
"NULL object passed to mkvalue"); "NULL object passed to Py_BuildValue");
return v; return v;
} }
...@@ -363,7 +363,7 @@ do_mkvalue(p_format, p_va) ...@@ -363,7 +363,7 @@ do_mkvalue(p_format, p_va)
default: default:
PyErr_SetString(PyExc_SystemError, PyErr_SetString(PyExc_SystemError,
"bad format char passed to mkvalue"); "bad format char passed to Py_BuildValue");
return NULL; return NULL;
} }
......
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