diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-23 10:52:44 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-23 10:52:44 (GMT) |
commit | 1476c2753bd78d6c18a9ea1176e9b8dc63d56e44 (patch) | |
tree | 591f618a71fbcb06e97e5374f1ce675c1ac66005 /Lib | |
parent | ae7639dbfb743f613fe92da1ed72216a49cccf1a (diff) | |
download | cpython-1476c2753bd78d6c18a9ea1176e9b8dc63d56e44.zip cpython-1476c2753bd78d6c18a9ea1176e9b8dc63d56e44.tar.gz cpython-1476c2753bd78d6c18a9ea1176e9b8dc63d56e44.tar.bz2 |
There was a non-ascii character in the source. Replaced by a hex escape.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_email.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 7e38eda..5d6adc0 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?= |