From: Serhiy Storchaka Date: Thu, 8 Sep 2016 12:47:27 +0000 (+0300) Subject: Remove old typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c49a516ae987bc5b5c2a363a16365b3d863d7c2c;p=python Remove old typo. Initially (e0b7e34b5971) it should be \udef0, but after 52a77ef069cd (issue #3672) lone surrogates are not accepted and should be removed. --- diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 8bbd669fc2..2224424efb 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -216,7 +216,7 @@ class BaseBytesTest: self.assertEqual(b, self.type2test(sample[:-3], "utf-8")) def test_decode(self): - sample = "Hello world\n\u1234\u5678\u9abc\def0\def0" + sample = "Hello world\n\u1234\u5678\u9abc" for enc in ("utf-8", "utf-16"): b = self.type2test(sample, enc) self.assertEqual(b.decode(enc), sample)