diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-12 17:00:41 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-03-12 17:00:41 +0000 |
commit | 1fe05e96ecf7cec6d9f5515c5784221d132081f1 (patch) | |
tree | 9d831e1adc4c4ab890f63dad3f0234ddb4293765 /Python/ceval.c | |
parent | fffd25a719cd3f13c69ee94cbc0a5de461672e49 (diff) | |
download | cpython-1fe05e96ecf7cec6d9f5515c5784221d132081f1.tar.gz |
Issue #6697: use %U format instead of _PyUnicode_AsString(), because
_PyUnicode_AsString() was not checked for error (NULL).
The unicode string is no more truncated to 200 or 400 *bytes*.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 47c53cfa04..4e9f77be8a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3989,10 +3989,10 @@ update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack, if (PyDict_GetItem(kwdict, key) != NULL) { PyErr_Format(PyExc_TypeError, "%.200s%s got multiple values " - "for keyword argument '%.200s'", + "for keyword argument '%U'", PyEval_GetFuncName(func), PyEval_GetFuncDesc(func), - _PyUnicode_AsString(key)); + key); Py_DECREF(key); Py_DECREF(value); Py_DECREF(kwdict); |