Replace PyObject_Unicode with PyObject_Str everywhere, and remove the

#define for PyObject_Unicode in object.h.
This commit is contained in:
Thomas Heller 2007-11-15 20:48:54 +00:00
parent 6e8ea0fd9c
commit 519a042c7c
13 changed files with 25 additions and 26 deletions

View file

@ -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;