diff options
-rw-r--r-- | Doc/howto/unicode.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index ea83d29..f9eeae4 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -262,8 +262,8 @@ Unicode result). The following examples show the differences:: ... UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte - >>> b'\x80abc'.decode("utf-8", "replace") #doctest: +SKIP - '?abc' + >>> b'\x80abc'.decode("utf-8", "replace") + '\ufffdabc' >>> b'\x80abc'.decode("utf-8", "ignore") 'abc' |