summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-09-06 11:56:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-09-06 11:56:47 (GMT)
commit6d8f744730c0689d822db1a2425170d7d5d44aca (patch)
treedf9106b97749a5f6342345e74a64e94371542335 /Modules
parentfbd1e041af2057065339bc643a00a55682427aa7 (diff)
parentf22913b8c39f1053c291c96cf3016cabad60bbd4 (diff)
downloadcpython-6d8f744730c0689d822db1a2425170d7d5d44aca.zip
cpython-6d8f744730c0689d822db1a2425170d7d5d44aca.tar.gz
cpython-6d8f744730c0689d822db1a2425170d7d5d44aca.tar.bz2
merge 3.2 (#1616)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_io/iobase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c
index 2c59d42..35c7cdd 100644
--- a/Modules/_io/iobase.c
+++ b/Modules/_io/iobase.c
@@ -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}
};