From: Michael W. Hudson Date: Tue, 24 Sep 2002 09:59:50 +0000 (+0000) Subject: Make test_rfc822 pass again. X-Git-Tag: v2.2.2b1~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d722a827c2b80247996cfdb92f589167afbb36be;p=thirdparty%2FPython%2Fcpython.git Make test_rfc822 pass again. --- diff --git a/Lib/rfc822.py b/Lib/rfc822.py index aa148b17461e..78f7eea397d0 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -487,7 +487,7 @@ def quote(str): def parseaddr(address): """Parse an address into a (realname, mailaddr) tuple.""" - a = AddrlistClass(address) + a = AddressList(address) list = a.addresslist if not list: return (None, None)