This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients ebfe, gps, pitrou, vstinner
Date 2009-01-02.19:02:00
SpamBayes Score 0.0006010184
Marked as misclassified No
Message-id <1230922921.76.0.828266682073.issue4751@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2009-01-02 19:02:01vstinnersetrecipients: + vstinner, pitrou, gps, ebfe
2009-01-02 19:02:01vstinnersetmessageid: <1230922921.76.0.828266682073.issue4751@psf.upfronthosting.co.za>
2009-01-02 19:02:01vstinnerlinkissue4751 messages
2009-01-02 19:02:00vstinnercreate