diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-05-17 22:38:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-05-17 22:38:43 (GMT) |
commit | 3e269397e39d2d60a1b74c338a7d321852d71b85 (patch) | |
tree | 20f86229c5f2ab2a9d0850633bfc1861eaf8f954 | |
parent | af7260e81a13f5ebe38d895cd8c32a080223302d (diff) | |
download | cpython-3e269397e39d2d60a1b74c338a7d321852d71b85.zip cpython-3e269397e39d2d60a1b74c338a7d321852d71b85.tar.gz cpython-3e269397e39d2d60a1b74c338a7d321852d71b85.tar.bz2 |
FileIO.readall(): remove trailing space from an exception message
-rw-r--r-- | Modules/_io/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 56c02dd..ff7d14d 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; } |