Merged revisions 72434 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72434 | r.david.murray | 2009-05-07 14:09:58 -0400 (Thu, 07 May 2009) | 2 lines
Pre-opened test file needs to be opened in binary mode.
........
diff --git a/Lib/test/test_aifc.py b/Lib/test/test_aifc.py
index 2f4350d..d6b7942 100644
--- a/Lib/test/test_aifc.py
+++ b/Lib/test/test_aifc.py
@@ -48,7 +48,7 @@
def test_close(self):
class Wrapfile(object):
def __init__(self, file):
- self.file = open(file)
+ self.file = open(file, 'rb')
self.closed = False
def close(self):
self.file.close()