diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-09-06 11:56:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-09-06 11:56:47 (GMT) |
commit | 6d8f744730c0689d822db1a2425170d7d5d44aca (patch) | |
tree | df9106b97749a5f6342345e74a64e94371542335 /Modules/_io | |
parent | fbd1e041af2057065339bc643a00a55682427aa7 (diff) | |
parent | f22913b8c39f1053c291c96cf3016cabad60bbd4 (diff) | |
download | cpython-6d8f744730c0689d822db1a2425170d7d5d44aca.zip cpython-6d8f744730c0689d822db1a2425170d7d5d44aca.tar.gz cpython-6d8f744730c0689d822db1a2425170d7d5d44aca.tar.bz2 |
merge 3.2 (#1616)
Diffstat (limited to 'Modules/_io')
-rw-r--r-- | Modules/_io/iobase.c | 2 |
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} }; |