Closed GoogleCodeExporter closed 9 years ago
To eliminate this warning change:
line 10: "import md5" -> "import hashlib"
line 1516: "hashed_key = md5.new(key).hexdigest()" -> "temp =
hashlib.md5.update(key)" + "hashed_key = temp.digest()"
This replaces the deprecated md5 with the current hashlib functionality that
performs
the same thing.
Original comment by jostend...@gmail.com
on 3 May 2009 at 5:23
The proper patch seems to be this one.
I've tested with Python 2.5 and Python 2.6 (on Leopard) and it works
Original comment by gnr...@gmail.com
on 3 May 2009 at 6:33
Attachments:
I like this. Applied in r142.
Please verify.
Original comment by dclinton
on 3 May 2009 at 6:38
Original issue reported on code.google.com by
gnr...@gmail.com
on 1 May 2009 at 10:40Attachments: