This reverts r63675 based on the discussion in this thread:
http://mail.python.org/pipermail/python-dev/2008-June/079988.html
Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names
in the spirit of 3.0 are available via a #define only. See the email thread.
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index 7658be0..0c85f47 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -55,7 +55,7 @@
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
- return PyBytes_FromStringAndSize(buf, len);
+ return PyString_FromStringAndSize(buf, len);
}
PyErr_Clear();
@@ -164,7 +164,7 @@
return PyInt_FromLong(ret);
}
else {
- return PyBytes_FromStringAndSize(buf, len);
+ return PyString_FromStringAndSize(buf, len);
}
}
@@ -185,7 +185,7 @@
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
- return PyBytes_FromStringAndSize(buf, len);
+ return PyString_FromStringAndSize(buf, len);
}
PyErr_Clear();