From 3e269397e39d2d60a1b74c338a7d321852d71b85 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 18 May 2013 00:38:43 +0200 Subject: [PATCH] FileIO.readall(): remove trailing space from an exception message --- Modules/_io/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 56c02dd176..ff7d14dcae 100644 --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -632,7 +632,7 @@ fileio_readall(fileio *self) if (bufsize > PY_SSIZE_T_MAX || bufsize <= 0) { PyErr_SetString(PyExc_OverflowError, "unbounded read returned more bytes " - "than a Python string can hold "); + "than a Python string can hold"); Py_DECREF(result); return NULL; } -- 2.50.1