mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
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.
This commit is contained in:
parent
e98839a1f4
commit
dd96db63f6
173 changed files with 2275 additions and 2280 deletions
|
|
@ -175,7 +175,7 @@ static PyObject *
|
|||
bytesio_getvalue(BytesIOObject *self)
|
||||
{
|
||||
CHECK_CLOSED(self);
|
||||
return PyBytes_FromStringAndSize(self->buf, self->string_size);
|
||||
return PyString_FromStringAndSize(self->buf, self->string_size);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(isatty_doc,
|
||||
|
|
@ -244,7 +244,7 @@ bytesio_read(BytesIOObject *self, PyObject *args)
|
|||
output = self->buf + self->pos;
|
||||
self->pos += size;
|
||||
|
||||
return PyBytes_FromStringAndSize(output, size);
|
||||
return PyString_FromStringAndSize(output, size);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -307,7 +307,7 @@ bytesio_readline(BytesIOObject *self, PyObject *args)
|
|||
self->pos -= size;
|
||||
}
|
||||
|
||||
return PyBytes_FromStringAndSize(output, n);
|
||||
return PyString_FromStringAndSize(output, n);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(readlines_doc,
|
||||
|
|
@ -349,7 +349,7 @@ bytesio_readlines(BytesIOObject *self, PyObject *args)
|
|||
return NULL;
|
||||
|
||||
while ((n = get_line(self, &output)) != 0) {
|
||||
line = PyBytes_FromStringAndSize(output, n);
|
||||
line = PyString_FromStringAndSize(output, n);
|
||||
if (!line)
|
||||
goto on_error;
|
||||
if (PyList_Append(result, line) == -1) {
|
||||
|
|
@ -455,7 +455,7 @@ bytesio_iternext(BytesIOObject *self)
|
|||
if (!next || n == 0)
|
||||
return NULL;
|
||||
|
||||
return PyBytes_FromStringAndSize(next, n);
|
||||
return PyString_FromStringAndSize(next, n);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(seek_doc,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue