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 <[email protected]>
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: <[email protected]>
2009-01-02 19:02:01vstinnerlinkissue4751 messages
2009-01-02 19:02:00vstinnercreate