Kaydet (Commit) 9f7baec5 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

backport r73430

üst f81ff989
...@@ -650,14 +650,6 @@ stringio_writable(stringio *self, PyObject *args) ...@@ -650,14 +650,6 @@ stringio_writable(stringio *self, PyObject *args)
Py_RETURN_TRUE; 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 * static PyObject *
stringio_closed(stringio *self, void *context) stringio_closed(stringio *self, void *context)
{ {
...@@ -708,7 +700,6 @@ static PyGetSetDef stringio_getset[] = { ...@@ -708,7 +700,6 @@ static PyGetSetDef stringio_getset[] = {
Hopefully, a better solution, than adding these pseudo-attributes, Hopefully, a better solution, than adding these pseudo-attributes,
will be found. will be found.
*/ */
{"buffer", (getter)stringio_buffer, NULL, NULL},
{"line_buffering", (getter)stringio_line_buffering, NULL, NULL}, {"line_buffering", (getter)stringio_line_buffering, NULL, NULL},
{NULL} {NULL}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment