equal
deleted
inserted
replaced
7 |
7 |
8 from i18n import _ |
8 from i18n import _ |
9 import util, encoding, sslutil |
9 import util, encoding, sslutil |
10 import os, smtplib, socket, quopri, time, sys |
10 import os, smtplib, socket, quopri, time, sys |
11 import email |
11 import email |
|
12 # On python2.4 you have to import these by name or they fail to |
|
13 # load. This was not a problem on Python 2.7. |
|
14 import email.Header |
|
15 import email.MIMEText |
12 |
16 |
13 _oldheaderinit = email.Header.Header.__init__ |
17 _oldheaderinit = email.Header.Header.__init__ |
14 def _unifiedheaderinit(self, *args, **kw): |
18 def _unifiedheaderinit(self, *args, **kw): |
15 """ |
19 """ |
16 Python 2.7 introduces a backwards incompatible change |
20 Python 2.7 introduces a backwards incompatible change |