mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
[3.9] hashlib: Fix old message about unicode objects. (GH-28653) (GH-28679)
(cherry picked from commit 9ce0f48e91
)
Co-authored-by: Julien Palard <julien@palard.fr>
This commit is contained in:
parent
4d5d161d2a
commit
8822526caa
1 changed files with 1 additions and 1 deletions
|
@ -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))) { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue