[Zope-CVS] CVS: ZODB3/Tools - fstest.py:1.5

Jeremy Hylton jeremy@zope.com
Thu, 1 Aug 2002 11:28:39 -0400


Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv4234

Modified Files:
	fstest.py 
Log Message:
Open file in binary mode on Windows.


=== ZODB3/Tools/fstest.py 1.4 => 1.5 ===
         return l
 
 def check(path):
-    file = open(path, 'r')
+    file = open(path, 'rb')
 
     file.seek(0, 2)
     file_size = file.tell()