diff options
author | Guido van Rossum <guido@python.org> | 1998-07-07 22:32:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-07 22:32:19 (GMT) |
commit | 233f4b54d3f5b25249caa7c19e87dcb74cabf1e6 (patch) | |
tree | 88c1e1a1e19a8782561c89d071120040702fc198 | |
parent | c821d1ecc0b0ebf481eeb9e83c9f93b272c20a22 (diff) | |
download | cpython-233f4b54d3f5b25249caa7c19e87dcb74cabf1e6.zip cpython-233f4b54d3f5b25249caa7c19e87dcb74cabf1e6.tar.gz cpython-233f4b54d3f5b25249caa7c19e87dcb74cabf1e6.tar.bz2 |
Two error messages still used the old name of the functio mkvalue() --
which is now Py_BuildValue().
-rw-r--r-- | Python/modsupport.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ 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; } |