[Python-checkins] r84502 - python/branches/py3k/Modules/_pickle.c

antoine.pitrou python-checkins at python.org
Sat Sep 4 20:45:37 CEST 2010


Author: antoine.pitrou
Date: Sat Sep  4 20:45:37 2010
New Revision: 84502

Log:
Fix typos in error messages (thanks Arfrever).



Modified:
   python/branches/py3k/Modules/_pickle.c

Modified: python/branches/py3k/Modules/_pickle.c
==============================================================================
--- python/branches/py3k/Modules/_pickle.c	(original)
+++ python/branches/py3k/Modules/_pickle.c	Sat Sep  4 20:45:37 2010
@@ -497,7 +497,7 @@
     /* 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 @@
     /* 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;
     }


More information about the Python-checkins mailing list