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 Alonso.Vidales
Recipients Alonso.Vidales, neologix, vstinner
Date 2013-05-02.09:20:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367486448.7.0.874842232202.issue17891@psf.upfronthosting.co.za>
In-reply-to
Content
Seems a problem with the system libs (I use MacOS 10.7.5), I just create a file with 6227020800 'a' chars on a Linux env, and the result is:
  8adbd18519be193db41dd5341a260963
I'll try to confirm this.

root@tras2:/var/tmp# pypy create_input.py 
root@tras2:/var/tmp# wc -c md5_test 
6227020800 md5_test
root@tras2:/var/tmp# md5sum md5_test
8adbd18519be193db41dd5341a260963  md5_test
root@tras2:/var/tmp# cat create_input.py 
f = open('md5_test', 'w')
for count in xrange(0, 622702080):
	f.write('aaaaaaaaaa')
f.close()
root@tras2:/var/tmp# cat /proc/version 
Linux version 3.2.13-xxxx-std-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Wed Mar 28 11:20:17 UTC 2012
History
Date User Action Args
2013-05-02 09:20:48Alonso.Vidalessetrecipients: + Alonso.Vidales, vstinner, neologix
2013-05-02 09:20:48Alonso.Vidalessetmessageid: <1367486448.7.0.874842232202.issue17891@psf.upfronthosting.co.za>
2013-05-02 09:20:48Alonso.Vidaleslinkissue17891 messages
2013-05-02 09:20:48Alonso.Vidalescreate