From: Jack Jansen Date: Tue, 23 Apr 2002 10:52:44 +0000 (+0000) Subject: There was a non-ascii character in the source. Replaced by a hex escape. X-Git-Tag: v2.3c1~5826 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1476c2753bd78d6c18a9ea1176e9b8dc63d56e44;p=thirdparty%2FPython%2Fcpython.git There was a non-ascii character in the source. Replaced by a hex escape. --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 7e38eda99f04..5d6adc001f84 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -1457,7 +1457,7 @@ class TestQuopri(unittest.TestCase): # Test the keep_eols flag eq(he('hello\nworld', keep_eols=1), '=?iso-8859-1?q?hello=0Aworld?=') # Test a non-ASCII character - eq(he('helloÇthere'), '=?iso-8859-1?q?hello=C7there?=') + eq(he('hello\xc7there'), '=?iso-8859-1?q?hello=C7there?=') # Test the maxlinelen argument eq(he('xxxx ' * 20, maxlinelen=40), """\ =?iso-8859-1?q?xxxx_xxxx_xxxx_xxxx_xx?=