From bef9d21d14722bc43fa2161ae55088d152d42ff8 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 31 Aug 2007 10:55:37 +0000 Subject: 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. --- Lib/email/header.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/email/header.py') diff --git a/Lib/email/header.py b/Lib/email/header.py index cc6b2789a0..3215a80f9b 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') -- cgit v1.2.1