diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-19 03:15:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-19 03:15:20 (GMT) |
commit | 1fea321502631184f8c3f1580159e3f2bcc5ee4b (patch) | |
tree | a42417656b9d68d6694981e6dc3ba3c96aa2030a /Modules/_io/iobase.c | |
parent | cee5663068a706b255de0ba45fe956ba6fb49ef2 (diff) | |
download | cpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.zip cpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.tar.gz cpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.tar.bz2 |
use NULL for the ends of tables
Diffstat (limited to 'Modules/_io/iobase.c')
-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 ef6d516..5e018da 100644 --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -700,7 +700,7 @@ static PyMethodDef IOBase_methods[] = { static PyGetSetDef IOBase_getset[] = { {"closed", (getter)IOBase_closed_get, NULL, NULL}, - {0} + {NULL} }; |