From: Antoine Pitrou Date: Sat, 4 Sep 2010 18:45:37 +0000 (+0000) Subject: Fix typos in error messages (thanks Arfrever). X-Git-Tag: v3.2a2~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1afb39a43707a9e3f14e459b384f1f4f03c16b73;p=thirdparty%2FPython%2Fcpython.git Fix typos in error messages (thanks Arfrever). --- diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 96f194ecd4de..c47a8445f34f 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -497,7 +497,7 @@ unpickler_read(UnpicklerObject *self, char **s, Py_ssize_t n) /* XXX: Should bytearray be supported too? */ if (!PyBytes_Check(data)) { PyErr_SetString(PyExc_ValueError, - "read() from the underlying stream did not" + "read() from the underlying stream did not " "return bytes"); Py_DECREF(data); return -1; @@ -530,7 +530,7 @@ unpickler_readline(UnpicklerObject *self, char **s) /* XXX: Should bytearray be supported too? */ if (!PyBytes_Check(data)) { PyErr_SetString(PyExc_ValueError, - "readline() from the underlying stream did not" + "readline() from the underlying stream did not " "return bytes"); return -1; }