backport r73430

This commit is contained in:
Benjamin Peterson 2009-06-14 22:36:48 +00:00
parent f81ff989d6
commit 9f7baec574
1 changed files with 0 additions and 9 deletions

View File

@ -650,14 +650,6 @@ stringio_writable(stringio *self, PyObject *args)
Py_RETURN_TRUE;
}
static PyObject *
stringio_buffer(stringio *self, void *context)
{
PyErr_SetString(_PyIO_unsupported_operation,
"buffer attribute is unsupported on type StringIO");
return NULL;
}
static PyObject *
stringio_closed(stringio *self, void *context)
{
@ -708,7 +700,6 @@ static PyGetSetDef stringio_getset[] = {
Hopefully, a better solution, than adding these pseudo-attributes,
will be found.
*/
{"buffer", (getter)stringio_buffer, NULL, NULL},
{"line_buffering", (getter)stringio_line_buffering, NULL, NULL},
{NULL}
};