use NULL for the ends of tables

This commit is contained in:
Benjamin Peterson 2009-04-19 03:15:20 +00:00
parent cee5663068
commit 1fea321502
6 changed files with 12 additions and 12 deletions

View file

@ -700,7 +700,7 @@ static PyMethodDef IOBase_methods[] = {
static PyGetSetDef IOBase_getset[] = {
{"closed", (getter)IOBase_closed_get, NULL, NULL},
{0}
{NULL}
};