Message78858
Update small lock patch: replace all tabs by spaces! I forget a change
between Python trunk and my patch: there is also the error message for
Unicode object. Before:
>>> import hashlib; hashlib.md5("abc")
TypeError: object supporting the buffer API required
after:
>>> import hashlib; hashlib.md5("abc")
TypeError: Unicode-objects must be encoded before hashing |
|
Date |
User |
Action |
Args |
2009-01-02 19:02:01 | vstinner | set | recipients:
+ vstinner, pitrou, gps, ebfe |
2009-01-02 19:02:01 | vstinner | set | messageid: <1230922921.76.0.828266682073.issue4751@psf.upfronthosting.co.za> |
2009-01-02 19:02:01 | vstinner | link | issue4751 messages |
2009-01-02 19:02:00 | vstinner | create | |
|