[issue2206] critical memory leak in hashlib.md5

2008-02-29 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Xie Bengui
Xie Bengui added the comment: I am sorry for submitting this fake issue! Thank Benjamin Peterson! -- nosy: +agateriver __ Tracker <[EMAIL PROTECTED]> __ __

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Benjamin Peterson
Changes by Benjamin Peterson: -- severity: normal -> minor __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: This is not a hashlib problem (or a bug at all.) range returns an list of numbers. The allocation of this list is the part taking up all the memory. Try replacing range with xrange. -- nosy: +benjamin.peterson ___

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Xie Bengui
Changes by Xie Bengui: -- nosy: -agateriver __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Xie Bengui
New submission from Xie Bengui: I write a pieces of code below to find my lost password: import hashlib for i in range(,): m=hashlib.md5(str(i)).hexdigest() if m=="21e83200cfd4845fd5e07ee151d70caf": print "password is: ", i break whe

[issue2206] critical memory leak in hashlib.md5

2008-02-28 Thread Xie Bengui
Changes by Xie Bengui: -- files: md5.txt nosy: agateriver severity: normal status: open title: critical memory leak in hashlib.md5 type: resource usage versions: Python 2.6 Added file: http://bugs.python.org/file9569/md5.txt __ Tracker <[EMAIL PROTECTED]>