[Python-checkins] Fix name of '\0'. (GH-14222)

Miss Islington (bot) webhook-mailer at python.org
Wed Jun 19 00:59:58 EDT 2019


https://github.com/python/cpython/commit/b2967436dbf80a70fcf69b9872dc0607be1e78ab
commit: b2967436dbf80a70fcf69b9872dc0607be1e78ab
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-18T21:59:54-07:00
summary:

Fix name of '\0'. (GH-14222)


'\0' is the NUL byte not NULL.
(cherry picked from commit 7821b4c6d29933511d50bb42255e39790c6abf00)

Co-authored-by: Benjamin Peterson <benjamin at python.org>

files:
M Modules/_csv.c

diff --git a/Modules/_csv.c b/Modules/_csv.c
index dd0b3c8107eb..6f7becfa8861 100644
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -825,7 +825,7 @@ Reader_iternext(ReaderObj *self)
             if (c == '\0') {
                 Py_DECREF(lineobj);
                 PyErr_Format(_csvstate_global->error_obj,
-                             "line contains NULL byte");
+                             "line contains NUL");
                 goto err;
             }
             if (parse_process_char(self, c) < 0) {



More information about the Python-checkins mailing list