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/stringio.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/stringio.c')
-rw-r--r-- | Modules/_io/stringio.c | 2 |
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 = { |