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. --- Python/codecs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/codecs.c') diff --git a/Python/codecs.c b/Python/codecs.c index d90bf7374d..fe57d0dc42 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -403,7 +403,7 @@ wrap_codec_error(const char *operation, operation, encoding); } -/* Encode an object (e.g. an Unicode object) using the given encoding +/* Encode an object (e.g. a Unicode object) using the given encoding and return the resulting encoded object (usually a Python string). errors is passed to the encoder factory as argument if non-NULL. */ @@ -450,7 +450,7 @@ _PyCodec_EncodeInternal(PyObject *object, } /* Decode an object (usually a Python string) using the given encoding - and return an equivalent object (e.g. an Unicode object). + and return an equivalent object (e.g. a Unicode object). errors is passed to the decoder factory as argument if non-NULL. */ -- cgit v1.2.1