From: Nikita Sobolev Date: Sat, 24 Dec 2022 14:48:43 +0000 (+0300) Subject: Remove wrong comment about `repr` in `test_unicode` (#100495) X-Git-Tag: v3.12.0a4~133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6dac128612df08fbd7f5e91dcd74a367bce0ed9;p=thirdparty%2FPython%2Fcpython.git Remove wrong comment about `repr` in `test_unicode` (#100495) --- diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 41094a7e917d..4ebbb9d32a3d 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -94,7 +94,6 @@ class UnicodeTest(string_tests.CommonTest, self.assertNotEqual(r"\u0020", " ") def test_ascii(self): - # Test basic sanity of repr() self.assertEqual(ascii('abc'), "'abc'") self.assertEqual(ascii('ab\\c'), "'ab\\\\c'") self.assertEqual(ascii('ab\\'), "'ab\\\\'")