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()