hashlib: Fix old message about unicode objects. (GH-28653)

This commit is contained in:
Julien Palard 2021-10-01 14:38:49 +02:00 committed by GitHub
parent 1dac95c814
commit 9ce0f48e91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@
#define GET_BUFFER_VIEW_OR_ERROR(obj, viewp, erraction) do { \
if (PyUnicode_Check((obj))) { \
PyErr_SetString(PyExc_TypeError, \
"Unicode-objects must be encoded before hashing");\
"Strings must be encoded before hashing");\
erraction; \
} \
if (!PyObject_CheckBuffer((obj))) { \