mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Change the builtin hash algorithms' names to lower case names
as promised by hashlib's documentation.
This commit is contained in:
parent
f0e521036c
commit
37d5cebb48
6 changed files with 11 additions and 8 deletions
|
@ -439,7 +439,7 @@ MD5_get_block_size(PyObject *self, void *closure)
|
|||
static PyObject *
|
||||
MD5_get_name(PyObject *self, void *closure)
|
||||
{
|
||||
return PyUnicode_FromStringAndSize("MD5", 3);
|
||||
return PyUnicode_FromStringAndSize("md5", 3);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue