This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Thorsten.Simons, pitrou
Date 2012-12-04.13:08:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354626515.52.0.312477940085.issue16606@psf.upfronthosting.co.za>
In-reply-to
Content
What happens if you replace iteration with something like:

with open(file, "rb") as f:
    while True:
        data = f.read(16384)
        if not data:
            break
        myhash.update(data)
History
Date User Action Args
2012-12-04 13:08:35pitrousetrecipients: + pitrou, Thorsten.Simons
2012-12-04 13:08:35pitrousetmessageid: <1354626515.52.0.312477940085.issue16606@psf.upfronthosting.co.za>
2012-12-04 13:08:35pitroulinkissue16606 messages
2012-12-04 13:08:35pitroucreate