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, since hashlib is available since 2.5, so the fixer is not strictly needed, but would be convenient. ---------- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 64305 nosy: collinwinter, loewis severity: normal status: open title: md5 fixer __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2454> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com