summaryrefslogtreecommitdiffstats
path: root/Lib/email/test/test_email.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-10-07 17:27:55 (GMT)
committerBarry Warsaw <barry@python.org>2002-10-07 17:27:55 (GMT)
commit08c82b8086d2edae9937aabb0945e4f08eec447a (patch)
treea5237679c827f0dc9f023f093ab791b737a2191f /Lib/email/test/test_email.py
parent487fe6ac398b38b604d56285f2afb71e3ddbeb91 (diff)
downloadcpython-08c82b8086d2edae9937aabb0945e4f08eec447a.zip
cpython-08c82b8086d2edae9937aabb0945e4f08eec447a.tar.gz
cpython-08c82b8086d2edae9937aabb0945e4f08eec447a.tar.bz2
openfile(): Go back to opening the files in text mode. This undoes
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.
Diffstat (limited to 'Lib/email/test/test_email.py')
-rw-r--r--Lib/email/test/test_email.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index 926c6bf..5bbb794 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -46,7 +46,7 @@ warnings.filterwarnings('ignore', '', DeprecationWarning, __name__)
def openfile(filename):
path = os.path.join(os.path.dirname(landmark), 'data', filename)
- return open(path, 'rb')
+ return open(path, 'r')