From: Benjamin Peterson Date: Wed, 19 Jun 2019 06:03:35 +0000 (-0700) Subject: [2.7] Fix name of '\0'. (GH-14225) X-Git-Tag: v2.7.17rc1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=598c75645911db0769132535daca8be07029221a;p=thirdparty%2FPython%2Fcpython.git [2.7] Fix name of '\0'. (GH-14225) '\0' is the NUL byte not NULL.. (cherry picked from commit 7821b4c6d29933511d50bb42255e39790c6abf00) --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 88e3e9065842..a54e74ecc3ff 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -818,7 +818,7 @@ Reader_iternext(ReaderObj *self) if (c == '\0') { Py_DECREF(lineobj); PyErr_Format(error_obj, - "line contains NULL byte"); + "line contains NUL"); goto err; } if (parse_process_char(self, c) < 0) {