From 6245cb3c015a5b9febef4d6ef30d3acfc762a79d Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Fri, 15 Apr 2016 02:14:19 +0000 Subject: =?UTF-8?q?Correct=20=E2=80=9Can=E2=80=9D=20=E2=86=92=20=E2=80=9Ca?= =?UTF-8?q?=E2=80=9D=20with=20=E2=80=9CUnicode=E2=80=9D,=20=E2=80=9Cuser?= =?UTF-8?q?=E2=80=9D,=20=E2=80=9CUTF=E2=80=9D,=20etc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This affects documentation, code comments, and a debugging messages. --- Modules/_pickle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/_pickle.c') diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 1acf14ade8..78cfe20384 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -1096,7 +1096,7 @@ _Unpickler_SkipConsumed(UnpicklerObject *self) return 0; assert(self->peek); /* otherwise we did something wrong */ - /* This makes an useless copy... */ + /* This makes a useless copy... */ r = PyObject_CallFunction(self->read, "n", consumed); if (r == NULL) return -1; -- cgit v1.2.1