commit | 1fea321502631184f8c3f1580159e3f2bcc5ee4b | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Apr 19 03:15:20 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Apr 19 03:15:20 2009 +0000 |
tree | a42417656b9d68d6694981e6dc3ba3c96aa2030a | |
parent | cee5663068a706b255de0ba45fe956ba6fb49ef2 [diff] [blame] |
use NULL for the ends of tables
diff --git a/Modules/_io/bytesio.c b/Modules/_io/bytesio.c index 0068cb7..add61d5 100644 --- a/Modules/_io/bytesio.c +++ b/Modules/_io/bytesio.c
@@ -684,7 +684,7 @@ static PyGetSetDef bytesio_getsetlist[] = { {"closed", (getter)bytesio_get_closed, NULL, "True if the file is closed."}, - {0}, /* sentinel */ + {NULL}, /* sentinel */ }; static struct PyMethodDef bytesio_methods[] = {