From: Christian Heimes Date: Mon, 1 Jul 2013 13:23:39 +0000 (+0200) Subject: Singular form just like the other error message. X-Git-Tag: v3.4.0a1~347^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80878793494b497bf3db9c5828373ab25df6a92f;p=python Singular form just like the other error message. --- diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 195ee5d790..0252c62339 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -5933,7 +5933,7 @@ Unpickler_set_memo(UnpicklerObject *self, PyObject *obj) 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)