Commit 0fc74513 authored by Barry Warsaw's avatar Barry Warsaw

Jason Mastaler's patch to break the dependence on rfc822.py for the

address parsing routines.  Closes SF patch #613434.
parent 767406ea
...@@ -13,13 +13,13 @@ import warnings ...@@ -13,13 +13,13 @@ import warnings
from cStringIO import StringIO from cStringIO import StringIO
from types import ListType from types import ListType
from rfc822 import quote from email._parseaddr import quote
from rfc822 import AddressList as _AddressList from email._parseaddr import AddressList as _AddressList
from rfc822 import mktime_tz from email._parseaddr import mktime_tz
# We need wormarounds for bugs in these methods in older Pythons (see below) # We need wormarounds for bugs in these methods in older Pythons (see below)
from rfc822 import parsedate as _parsedate from email._parseaddr import parsedate as _parsedate
from rfc822 import parsedate_tz as _parsedate_tz from email._parseaddr import parsedate_tz as _parsedate_tz
try: try:
True, False True, False
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment