summaryrefslogtreecommitdiffstats
path: root/Modules/_io/stringio.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-19 03:15:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-19 03:15:20 (GMT)
commit1fea321502631184f8c3f1580159e3f2bcc5ee4b (patch)
treea42417656b9d68d6694981e6dc3ba3c96aa2030a /Modules/_io/stringio.c
parentcee5663068a706b255de0ba45fe956ba6fb49ef2 (diff)
downloadcpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.zip
cpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.tar.gz
cpython-1fea321502631184f8c3f1580159e3f2bcc5ee4b.tar.bz2
use NULL for the ends of tables
Diffstat (limited to 'Modules/_io/stringio.c')
-rw-r--r--Modules/_io/stringio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c
index d75a604..136f41d 100644
--- a/Modules/_io/stringio.c
+++ b/Modules/_io/stringio.c
@@ -723,7 +723,7 @@ static PyGetSetDef stringio_getset[] = {
{"encoding", (getter)stringio_encoding, NULL, NULL},
{"errors", (getter)stringio_errors, NULL, NULL},
{"line_buffering", (getter)stringio_line_buffering, NULL, NULL},
- {0}
+ {NULL}
};
PyTypeObject PyStringIO_Type = {