diff options
author | Barry Warsaw <barry@python.org> | 2007-08-31 10:55:37 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2007-08-31 10:55:37 (GMT) |
commit | bef9d21d14722bc43fa2161ae55088d152d42ff8 (patch) | |
tree | 5537c4d371e72ae4aba0590bb6f8d1c76d4df48c /Lib/email/header.py | |
parent | 7f13e6b3e2546a7d6402f969113d928cc1d58dfc (diff) | |
download | cpython-bef9d21d14722bc43fa2161ae55088d152d42ff8.zip cpython-bef9d21d14722bc43fa2161ae55088d152d42ff8.tar.gz cpython-bef9d21d14722bc43fa2161ae55088d152d42ff8.tar.bz2 |
Make test_email.py completely pass. This is cheating though because the two
line splitting examples don't split things the way they used to -- or should.
In these cases, change the test case and add an XXX.
The final failure was in Charset.body_encode() with euc-jp charset. These
return the original string unencoded, which isn't right. XXX and comment this
out for now; we'll fix it after a1.
Diffstat (limited to 'Lib/email/header.py')
-rw-r--r-- | Lib/email/header.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/email/header.py b/Lib/email/header.py index cc6b278..3215a80 100644 --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -24,7 +24,6 @@ SPACE = ' ' BSPACE = b' ' SPACE8 = ' ' * 8 EMPTYSTRING = '' - MAXLINELEN = 78 USASCII = Charset('us-ascii') |