mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Make pickle errror message unicode objects.
This commit is contained in:
parent
bc1f886170
commit
38e6a69a20
1 changed files with 2 additions and 2 deletions
|
|
@ -393,13 +393,13 @@ cPickle_ErrFormat(PyObject *ErrType, char *stringformat, char *format, ...)
|
|||
if (format) args = Py_VaBuildValue(format, va);
|
||||
va_end(va);
|
||||
if (format && ! args) return NULL;
|
||||
if (stringformat && !(retval=PyString_FromString(stringformat)))
|
||||
if (stringformat && !(retval=PyUnicode_FromString(stringformat)))
|
||||
return NULL;
|
||||
|
||||
if (retval) {
|
||||
if (args) {
|
||||
PyObject *v;
|
||||
v=PyString_Format(retval, args);
|
||||
v=PyUnicode_Format(retval, args);
|
||||
Py_DECREF(retval);
|
||||
Py_DECREF(args);
|
||||
if (! v) return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue