comparing multiple copies of terrabytes of data?

Josiah Carlson jcarlson at uci.edu
Tue Oct 26 12:37:27 EDT 2004


Josiah Carlson <jcarlson at uci.edu> wrote:

Obviously this was running old code as the following lines don't work...
>         digs.append(m.update(f1.read(b)).digest())
>         if dig != m.update(f2.read(b)).digest():
>         if dig != m.update(f3.read(b)).digest():

Those got split up into:
m.update(f1.read(b))
digs.append(m.digest())

m.update(f2.read(b))
if dig != m.digest():

m.update(f3.read(b))
if dig != m.digest():

respectively.  Gah, I don't like mornings.

 - Josiah




More information about the Python-list mailing list