[issue2454] md5 fixer

2008-03-21 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: And do the same for: sha.sha1 -> hashlib.sha1 sha.new -> hashlib.sha1 -- nosy: +gregory.p.smith __ Tracker <[EMAIL PROTECTED]> __

[issue2454] md5 fixer

2008-03-21 Thread Martin v. Löwis
New submission from Martin v. Löwis <[EMAIL PROTECTED]>: Usages of the md5 module could be fixed, as it's unavailable in 3k. In particular: import md5 -> import hashlib md5.new(...) -> hashlib.md5(...) md5.md5(...) -> hashlib.md5(...) Notice that users could already change this manually in 2.6