From: Victor Stinner Date: Fri, 17 May 2013 22:38:43 +0000 (+0200) Subject: FileIO.readall(): remove trailing space from an exception message X-Git-Tag: v3.4.0a1~701 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e269397e39d2d60a1b74c338a7d321852d71b85;p=thirdparty%2FPython%2Fcpython.git FileIO.readall(): remove trailing space from an exception message --- diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 56c02dd176a5..ff7d14dcae27 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; }