mirror of
https://github.com/python/cpython.git
synced 2025-12-09 18:48:05 +00:00
Replace PyObject_Unicode with PyObject_Str everywhere, and remove the
#define for PyObject_Unicode in object.h.
This commit is contained in:
parent
6e8ea0fd9c
commit
519a042c7c
13 changed files with 25 additions and 26 deletions
|
|
@ -1185,7 +1185,7 @@ csv_writerow(WriterObj *self, PyObject *seq)
|
|||
else {
|
||||
PyObject *str;
|
||||
|
||||
str = PyObject_Unicode(field);
|
||||
str = PyObject_Str(field);
|
||||
Py_DECREF(field);
|
||||
if (str == NULL)
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue