[issue2454] md5 fixer

Martin v. Löwis report at bugs.python.org
Sat Mar 22 02:00:45 CET 2008


New submission from Martin v. Löwis <martin at v.loewis.de>:

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 <report at bugs.python.org>
<http://bugs.python.org/issue2454>
__________________________________


More information about the Python-bugs-list mailing list