the change in revision 1.11 (test_email.py) in response to SF bug
#609988. We now think that was the wrong fix and that WinZip was the
real culprit there.
This and the Parser.py patch will be forward ported into Python 2.3
and email 2.5.
\f
def openfile(filename):
path = os.path.join(os.path.dirname(landmark), 'data', filename)
- return open(path, 'rb')
+ return open(path, 'r')
\f
def openfile(filename):
from os.path import join, dirname, abspath
path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))
- return open(path, 'rb')
+ return open(path, 'r')
# Prevent this test from running in the Python distro
try: