[Python-checkins] cpython (merge 3.3 -> default): Singular form just like the other error message.

christian.heimes python-checkins at python.org
Mon Jul 1 15:24:08 CEST 2013


http://hg.python.org/cpython/rev/f17647ce8f8a
changeset:   84410:f17647ce8f8a
parent:      84408:f3372692ca20
parent:      84409:61b6cd7b9819
user:        Christian Heimes <christian at cheimes.de>
date:        Mon Jul 01 15:23:48 2013 +0200
summary:
  Singular form just like the other error message.

files:
  Modules/_pickle.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_pickle.c b/Modules/_pickle.c
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -5954,7 +5954,7 @@
                 goto error;
             if (idx < 0) {
                 PyErr_SetString(PyExc_ValueError,
-                                "memos key must be positive integers.");
+                                "memo key must be positive integers.");
                 goto error;
             }
             if (_Unpickler_MemoPut(self, idx, value) < 0)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list