This commit is contained in:
Benjamin Peterson 2011-09-06 07:56:47 -04:00
commit 6d8f744730
1 changed files with 1 additions and 1 deletions

View File

@ -704,7 +704,7 @@ static PyMethodDef iobase_methods[] = {
};
static PyGetSetDef iobase_getset[] = {
{"__dict__", iobase_get_dict, NULL, NULL},
{"__dict__", (getter)iobase_get_dict, NULL, NULL},
{"closed", (getter)iobase_closed_get, NULL, NULL},
{NULL}
};