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 0ddc300..76fc2d9 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -351,7 +351,7 @@
* 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 @@
default:
PyErr_SetString(PyExc_SystemError,
- "bad format char passed to mkvalue");
+ "bad format char passed to Py_BuildValue");
return NULL;
}